dahund: navi mit <select> box. wie gehts???

Beitrag lesen

Ich möchte eine Navigation mit ner <select> box basteln. Bisher sieht das so aus:
<script language="JavaScript">
    function open(ziel) {
        location.href="#"+ ziel;
    }
</script>
</head>
<body text="#000000" bgcolor="#FFFFFF" link="#FF0000" alink="#FF0000" vlink="#FF0000">
 <form>
<select name="Auswahl" onChange="open(this.form.Auswahl.options[this.form.Auswahl.options.selectedIndex].value)">
   <option value=http://www.heise.de>ErsterName</option>
   <option value=http://www.sport1.de>ZweiterName</option>
</select>
</form>

geht leider nicht, hat da jemand nen Vorschlag?