<head>
<script type="text/javascript">
function Go (x) {
if (x == "nothing") {
document.forms[0].reset();
document.forms[0].elements[0].blur();
return;
} else {
location.href = x;
document.forms[0].reset();
document.forms[0].elements[0].blur();
}
}
</script>
</head>
<body>
<form action="">
<select size=1 name="Auswahl"
onChange="Go(this.form.Auswahl.options this.form.Auswahl.options.selectedIndex.value)">
<OPTION value="nothing" selected>Gehe zu...</OPTION>
<OPTION value="seite1.htm">Seite 1</OPTION>
<OPTION value="seite2.htm">Seite 2</OPTION>
</SELECT>
</FORM>
</body>