Put the following Java script in your html-head :
<script type="text/javascript">
<!--
function Go(x)
{
if(x == "nothing")
{
document.forms[0].reset();
document.forms[0].elements[0].blur();
return;
}
else
{
top.content.location.href = x;
document.forms[0].reset();
document.forms[0].elements[0].blur();
}
}
//-->
</script>
and then use it like the following :
<form name="MetaForm2"><select size="1" name="MetaAusw2" onChange="Go(this.form.MetaAusw2.options[this.form.MetaAusw2.options.selectedIndex].value)">
<option value="nothing">please choose</option>
<option value="yoursite.php?var=1">1</option>
<option value="yoursite.php?var=2">2</option>
<option value="yoursite.php?var=3">3</option>
</select></form>
You don“t need to submit the form. On change of the combobox it jumps to the next site.