Hola
bombillero
Pon así los radio (fíjate que tienen el mismo
name)
Código:
<form name="frm">
Option 1: <input type="radio" name="r1" onclick = "habilitar(1,2,5)" /><br />
Option 2: <input type="radio" name="r1" onclick = "habilitar(3)" /><br />
y usa este código:
Código PHP:
function habilitar() {
fr = document.frm;
// deshabilitar todos los checkbox
for (i=0; ele=fr.elements[i]; i++)
if (ele.type=='checkbox') ele.disabled = true;
// habilitar los checkbox adecuados
for (i=0; i<arguments.length; i++)
fr['c'+arguments[i]].disabled = false;
}
Saludos,