hier der quellcode:
<script language="JavaScript">
function Go(x) {
if(x == "nothing") {
document.forms[0].reset();
document.forms[0].elements[0].blur();
return;
}
else {
parent.frames[1].location.href = x;
document.forms[0].reset();
document.forms[0].elements[0].blur();
}
}
</script></head><body>
<center><table><tr><td><form action="">
<select name="Auswahl" onChange="Go(this.form.Auswahl.options[this.form.Auswahl.options.selectedIndex].value)">
<option value="nothing">2002</option>
<option value="nothing"></option>
<option value="januar02.html">Januar</option>
<option value="februar02.html">Februar</option>
</select></form></td>
<td><form action="">
<select name="Auswahl" onChange="Go(this.form.Auswahl.options[this.form.Auswahl.options.selectedIndex].value)">
<option value="nothing">2003</option>
<option value="nothing"></option>
<option value="januar03.html">Januar</option>
<option value="februar03.html">Februar</option>
</select></form></td></tr></table></center>