Originariamente inviato da n@sky
nn nel secondo script, ma nel primo: dovrebbe exere legato al secondo in modo ke la scelta del primo menù cada nel secondo ke poi cadrà nel contenitore ke stà nel secondo script
...io provo ad interpretare...

codice:
<html>
<head>
<title> ciao</title>
<script language="JavaScript" type="text/JavaScript"> 

function Aggiungi(valore){
	var modulo=document.form, l=modulo.B.options.length,i;
	for(i=0; i<l; i++) if(modulo.B.options[i].value==valore||valore=="%") return;
	modulo.B.options[l] = new Option(valore,valore);
}
</script> 
</HEAD>
<body> 

<form name="form" method="get" action="top_dx.php" target="rightFrame"> 
<table width="337"> 
<tr> 
<td>Città: 
<select name="A" onChange="Aggiungi(this[this.selectedIndex].value);"> 


<option value="%">Tutte le città</option> 
<option value="Rovigo">Rovigo</option> 
<option value="Milano">Milano</option> 
<option value="Torino">Torino</option> 
<option value="Roma">Roma</option> 
<option value="Venezia">Venezia</option> 
</select> 
</td> 
<td> 
<select name="B"> 
</select> 
</td> 

<td> </td> 
</tr> 
</table> 
</form> 
</body> 
</html>
vedi se è quello che vorresti...