So funktioniert das bei mir reibungslos (hab's ersma ohne Frames gebaut). Möglicherweise haste an 'ner ganz anderen Stelle 'nen Bug in der Page...
<head>
<script language="JavaScript">
function Go(x) {
if(x == "none")
{
document.forms[0].reset();
document.forms[0].elements[0].blur();
return;
}
else
{
document.forms[0].reset();
document.forms[0].elements[0].blur();
location.href = x;
}
}
</script>
</head>
<body>
<form style="margin-bottom:0pt;" target="main">
<select style="font-family:Verdana,Arial,Helvetica; font-size:8pt;" name="Auswahl" size=1 onChange="Go(this.form.Auswahl.options[this.form.Auswahl.options.selectedIndex].value)">
<option value="none" seleced>A-Z</option>
<option value="none">--------------------</option>
<option value="http://www.ebay.de">Text</option>
</form>
</body>