ciao a tutti.
ho trovato questo codice per un menu a tendina:

codice:
<html>
<head>
</head>

<body>

<script type="text/javascript">
var theTarget = "_blank";
function goThere(){
if(!document.theForm1.theMenu1.selectedIndex==""){
window.open(document.theForm1.theMenu1.options[document.theForm1.theMenu1.selectedIndex].value,theTarget,"");}}
</script>

<form name="theForm1">
<select name="theMenu1" size=1 onChange="goThere()">
<option selected value="">siti preferiti
<option value="http://www.yahoo.it">yahoo
<option value="http://www.msn.com">msn
</select>
</form>

</body>
</html>
...il mio problema è che non riesco a creare nuovi menu a tendina come il precedente, ho provato a fare copia-incolla , sempre se è esatto fare copia-incolla e a cambiare delle voci, ma non ci sono riuscito, potete aiutarmi?