Hallo Frank,
hier mal eine Variante ohne Button:
<html>
<head>
<script language="JavaScript">
function SelectLink(ll)
{ if (ll!="") window.open(ll);
}
</script>
</head>
<body>
<form>
<select onChange="SelectLink(this.options[selectedIndex].value)">
<option value="">Select a link!
<option value="http://forum.de.selfhtml.org/">SELFHTML Forum
<option value="http://www.google.com/">Google
</select>
</form>
</body>
</html>
Ansonsten kannst Du bei Deiner Variante die Zeile
location=form.dest.options[myindex].value ;
durch
window.open(form.dest.options[myindex].value);
ersetzen und alle target="_blank" -Angaben weglassen,
das müßte auch gehen.
MfG Lutz T.