Ver Mensaje Individual
  #3 (permalink)  
Antiguo 10/12/2008, 18:16
elbetonet
 
Fecha de Ingreso: septiembre-2008
Mensajes: 65
Antigüedad: 16 años, 3 meses
Puntos: 2
Respuesta: problema con select

Algo sencillo seria algo así.
Código:
<input type="text" id="texto" name="texto" onchange="habilita('elotro');" />
<input type="text" id="elotro" name="elotro" disabled="disabled" />

La funcion javascript.

function habilita(elemento)
{
    document.getElementById(elemento).disabled = false;
}
espero que te ayude.