Ver Mensaje Individual
  #2 (permalink)  
Antiguo 11/06/2006, 02:27
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 9 meses
Puntos: 772
Hola luz506

Creo que lo más sencillo es que tuvieras el formulario completo y mostraras/ocultaras las partes necesarias. Te pongo un ejemplo:
Código PHP:
<html>
<
head>
<
script type="text/javascript">
function 
tipoBusqueda(chk){
  
document.getElementById('normal').style.display = (chk) ? 'none' 'block';
  
document.getElementById('avanzada').style.display = (chk) ? 'block' 'none';
}
</script>
</head>
<body>
<form>
<input type="checkbox" onclick = "tipoBusqueda(this.checked)" />
<fieldset id="normal">
<input type="text" value="Normal" />
</fieldset>
<fieldset id="avanzada" style="display:none">
<input type="text" value="Avanzada" />
</fieldset>
</form>
</body>
</html> 
Saludos,