19/10/2004, 20:56
|
| | | 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> |