Cita:
Iniciado por JavierB Hola de nuevo.
Te pongo un código de ejemplo:
Código PHP:
<html>
<head>
<script type="text/javascript">
function mostrar(num) {
document.getElementById('pepe').style.display = (num==0) ? 'none' : 'block';
}
</script>
</head>
<body>
<p>Mostrar: <input type="radio" name="rad" onclick="mostrar(1)" />
Ocultar: <input type="radio" name="rad" checked="checked" onclick="mostrar(0)" /></p>
<table id="pepe" style="display:none">
<tr><td>Algo</td></tr>
</table>
</body>
</html>
Saludos,

Excelente... GRacias...
Seria mucha molestia si me pones un ejemplo con el select?
gracias.