codice:
<html>
<head>
<SCRIPT language=javascript>
function Scrivi(combo) {
if (combo.options[combo.selectedIndex].value!="null") {
alert(combo.options[combo.selectedIndex].text);
}
}
</SCRIPT>
</head>
<body>
<FORM method=post>
<SELECT name=siti onchange="Scrivi(this)">
<OPTION selected value=null>Scegli</OPTION>
<OPTION value="Valore 1">longu</OPTION>
<OPTION value="Valore 2">flumini</OPTION>
<OPTION value="Valore 3">from</OPTION>
<OPTION value="Valore 4">sardinia</OPTION>
</SELECT>
</form>
</body>
</html>