grazie ragazzi per la collaborazione la risposta del browser(html è quetsa):
<html><head>
<title>Esempio - Select dinamiche</title>


<script type="text/javascript">
/*
Script tratto dal libro "JavaScript and DHTML Cookbook" - Capitolo 8-13
Pubblicato da O'Reilly & Associates
Copyright 2003 Danny Goodman
Riprodurre questa nota per qualunque riutilizzo del codice.
*/
var regiondb = new Object()

regiondb["1"] = [{value:"1," text:"REGIONE PREDDA NIEDDA NORD str. 5"}];

regiondb["2"] = [{value:"2," text:"VIA AMENDOLA GIOVANNI 28/A"}];

regiondb["4"] = [{value:"4," text:"PREDDA NIEDDA STR. 2"}];

regiondb["6"] = [{value:"6," text:"PIAZZA D`ITALIA 11"}];

regiondb["7"] = [{value:"7," text:"VIA BRIGATA SASSARI 47"}];

regiondb["8"] = [{value:"8," text:"VIA ENRICO COSTA 66"}];
function setCities(chooser) {
var newElem;
var where = (navigator.appName == "Microsoft Internet Explorer") ? -1 : null;
var cityChooser = chooser.form.elements["città"];
while (cityChooser.options.length) {
cityChooser.remove(0);
}
var choice = chooser.options[chooser.selectedIndex].value;
var db = regiondb[choice];

if (choice != "") {
for (var i = 0; i < db.length; i++) {
newElem = document.createElement("option");
newElem.text = db[i].text;
newElem.value = db[i].value;
cityChooser.add(newElem, where);
}
}
}


</script></head>


<body>
<h1>Esempio - Select dinamiche</h1>
<hr>
<form name="form">
Invia la richiesta a:
<select name="continente" onchange="setCities(this)">
<option value="" selected="selected">Seleziona un continente:</option>

<option value="1">MICRO S.r.l.</option>

<option value="2">SPORTISSIMO S.r.l.</option>

<option value="4">ELIA DOMENICO EREDI DI A. ELIA e C. S.n.c.</option>

<option value="6">FANTASIA DISNEY W.B.</option>

<option value="7">PELLICCE MODE di GOFFREDO TANGIANU e C. S.n.c.</option>

</select>_
<select name="città">
</select>
</form>










</body>
</html>