Hola
yokoshima
Ahí va un consejo en forma de código:
Código PHP:
<html>
<head>
<script type="text/javascript">
function habilita(val,obj) {
obj.disabled=val;
obj.style.background = val ? 'yellow' : 'white';
}
</script>
</head>
<body>
<form name="frm">
<input type="text" name="algo" disabled="disabled" style="background:yellow" />
Si <input type="radio" name="r1" onclick="habilita(false,algo)" />
No <input type="radio" name="r1" checked="checked" onclick="habilita(true,algo)" />
</form>
</body>
</html>
Saludos,