hola:
 
he cogido de las faq´s un ejemplo sobre lo del titulo, pero en mi caso solo hay 2 radio button y no consigo q me funcione. Este es mi codigo:
 
<html>
<head>
<title>Untitled Document</title>
 
<script language="JavaScript">
 
   function habilita(){
    document.frm.txt.disabled = false;
   }
 
   function deshabilita(){
    document.frm.txt.disabled = true;
    document.frm.txt.value = "";
   }
 
 
  </script>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
 
<body>
  <form>
	      <input type="radio" name="conectado" value="si" onclick="deshabilita()">
          Sí 
          <input type="radio" name="conectado" value="no" onclick="habilita()">
        No (indique cual:
        <input type="text" name="txt" disabled> )</td>
    </tr>
    </form>
</body>
</html>
 
me podeis echar una mano?
 
un saludo
 
 
gracias 
   
 



