hier mal ein komplettes Gerüst
vllt hilft dir das weiter...
Code:
<!DOCTYPE
html PUBLIC "-//
W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<
html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/
html; charset=utf-8" />
<script type="text/javascript">
function zuweisen() {
var adresse = document.test_form.test_input.value;
alert(adresse) //zu Testzwecken
[...]
}
</script>
</head>
<body>
<form action="" method="get" name="test_form">
<input name="test_input" type="text" onclick="zuweisen()"/>
</form>
</body>
</
html>