Código HTML:
Ver original<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <script language="JavaScript" type="text/JavaScript">
function muestra(obj){
if(obj.checked){
document.getElementById("botones").style.display="";
}else{
document.getElementById("botones").style.display="none";
}
}
<body><table width="100%" border="0" cellspacing="0" cellpadding="0"> <input name="Montly" type="checkbox" onChange="muestra(this)"/> <td width="419"><span id="botones" style="display:none"><table border="0" cellspacing="0" cellpadding="0"> <td>Plase charge: every
</td> <td><input type="radio" name="GrupoOpcionesMontly" value="9"></td> <td><input type="radio" name="GrupoOpcionesMontly" value="20"></td> <td width="117"> </td> <input name="Trimonthly" type="checkbox" /> <input name="Semestral" type="checkbox" /> <input name="Annual" type="checkbox" /> <input name="Other" type="checkbox" />
Por cierto esto es javascript no java... y la solución que te doy ahora es html sencillito....
Quim