o riempi i value del select...

codice:
<select name=regione size=1> 
<option value="Toscana">Toscana</option> 
<option value="Lombardia">Lombardia</option>
<option value=".......">.....</option> 
</select>

oppure
var regione = document.modulo.regione.options[document.modulo.regione.selectedIndex].value;

cambia in

var regione = document.modulo.regione.options[document.modulo.regione.selectedIndex].text;