Gracias de antemano.
Código:
<script type="text/javascript"> function cambiar(esto) { vista=document.getElementById(esto).style.display; if (vista=='none') vista='block'; else vista='none'; document.getElementById(esto).style.display = vista; </script> <a href="#" onclick="cambiar('ejemplo'); return false;">Prefiero buscar por Zonas o Barrios</a> <tr id="ejemplo" style="display: none;"> <td> <table> <tr height="35px" > <td width="275" align="left" class=iselect>Zona</td> </tr> <tr height="35px"> <td width="275"><input type="text" value="<?php echo get_param("zona");?>" name="zona"></td> </tr> <tr height="35px"> <td width="275" align="left" class=iselect>Sector</td> </tr> <tr height="35px"> <td width="275"><input type="text" value="<?php echo get_param("sector");?>" name="sector"></td> </tr> </table> </td> </tr>