Hola
promotore
Pon así el select:
Código:
<select id="select" onchange="location.href=this.value">
Y en la página destino pon este código:
Código:
<script type="text/javascript">
function ini() {
dire = location.search;
sele = dire.split('=')[1];
document.getElementById('select').selectedIndex = sele;
}
</script>
Saludos,