Ver Mensaje Individual
  #3 (permalink)  
Antiguo 16/02/2005, 09:58
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 3 meses
Puntos: 772
Hola JuanKa

Si tu formulario fuera algo así:
Código:
<form>
<select name="Espacio" onchange="poner(this.form)">
...
<input type="text" name="txt" />
</form>
Podría servirte esta función:
Código:
function poner(frm) {
  frm.txt.value=frm.Espacio.value+' '+frm.FTP.value+' '+frm.Correo.value;
}
Saludos,