Ver Mensaje Individual
  #2 (permalink)  
Antiguo 19/10/2004, 20:56
Avatar de SiR.CARAJ0DIDA
SiR.CARAJ0DIDA
 
Fecha de Ingreso: junio-2004
Ubicación: Acá
Mensajes: 1.166
Antigüedad: 20 años, 6 meses
Puntos: 4
<script>
function cambia(obj)
{
document.getElementById('pepe').value = obj.value;
}
</script>

<input type=text id=pepe>
<select onchange="cambia(this)">
<option value="valor1">valor1
<option value="valor2">valor2
</select>