Ver Mensaje Individual
  #2 (permalink)  
Antiguo 16/11/2006, 16:57
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 2 meses
Puntos: 772
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,