Ver Mensaje Individual
  #1 (permalink)  
Antiguo 22/02/2010, 21:02
Avatar de tommylogan
tommylogan
 
Fecha de Ingreso: marzo-2008
Ubicación: Mexico DF
Mensajes: 41
Antigüedad: 16 años, 2 meses
Puntos: 0
Mostrar checkbox al activar un checbox

Hola amigos:

En verdad les agradezco que pasne por aqui ahora que necesito de su ayuda, el problema es el siguiente:

Tengo unos Checkbox con los siguientes datos:

Montly
Trimonthly
Semestral
Annual
Other

Necesito que cuando "selecciones" Montly aparezcan dos checkboxes uno con 9th y el otro con 20th

Alguien me podria ayudar a lograrlo

Gracias

P.D. cabe mencionar que esto esta dentro de un formulario mas grande, aquí les dejo algo del codigo.

Cita:
<td width="122">
<label for="ocupacion"><strong>Periodicity:</strong></label>
<strong> </tr>
<tr>
<td>&nbsp;</td>
<td width="124"><label>
<input name="Montly" type="checkbox" />
Montly </label></td>
<td width="419">Plase charge: every
<input name="9th" type="checkbox" />
9th o the
<input name="20th" type="checkbox" />
20th</td>
<td width="117">&nbsp;</td>
</tr>
<tr>
<td>&nbsp;</td>
<td><label>
<input name="Trimonthly" type="checkbox" />
Trimonthly </label></td>
<td></td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&nbsp;</td>
<td><label>
<input name="Semestral" type="checkbox" />
Semestral </label></td>
<td></td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&nbsp;</td>
<td><label>
<input name="Annual" type="checkbox" />
Annual </label></td>
<td></td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&nbsp;</td>
<td><label>
<input name="Other" type="checkbox" />
Other </label></td>
<td></td>
<td>&nbsp;</td>
</tr>
</table>