die Lösung von user-321 kann nie und nimmer funktionieren, weil da immer die erste Option verwendet wird.
Die ausgewählte Option spricht man mit
selectedIndex an.
hier eine kleine Beispieldatei:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Dropdown-Popup</title>
<script type="text/javascript">
function goto() {
selected_index = document.getElementById('auswahl'.selectedIndex;
url = document.getElementById('auswahl'[selected_index].value;
window.open(url, "Neues Fenster", "height=200, width=300"
}
/*
----
*/
urls = Array();
urls["a"] = "index.html";
urls["b"] = "seite2.html";
urls["c"] = "seite3.html";
function goto2() {
selected_index = document.getElementById('auswahl2'.selectedIndex;
key = document.getElementById('auswahl2'[selected_index].value;
url = urls[key];
window.open(url, "Neues Fenster2", "height=200, width=300"
}
</script>
</head>
<body>
<h1>Dropdown-Popup</h1>
<label for="auswahl">Auswahl mit URL direkt als Value:</label>
<select id="auswahl" name="auswahl" onchange="goto()">
<option value="index.html">Index</option>
<option value="seite2.html">Seite2</option>
<option value="seite3.html">Seite3</option>
</select>
<hr />
<label for="auswahl2">Auswahl mit URL in Array:</label>
<select id="auswahl2" name="auswahl" onchange="goto2()">
<option value="a">Index</option>
<option value="b">Seite2</option>
<option value="c">Seite3</option>
</select>
</body>
</html>