Hola
emajesus
Te pongo un ejemplo:
Código PHP:
<html>
<head>
<script type="text/javascript">
function mostrar(num) {
document.getElementById('capa0').style.display = (num==0) ? 'block' : 'none';
document.getElementById('capa1').style.display = (num==1) ? 'block' : 'none';
}
</script>
</head>
<body>
<form>
Si <input type="radio" name="rad" onclick = "mostrar(0)" />
No <input type="radio" name="rad" onclick = "mostrar(1)" />
<div id="capa0" style="display:none">
Texto 1 <input type="text" value = "cero" />
</div>
<div id="capa1" style="display:none">
Texto 2
<select>
<option>----</option>
</select>
</div>
</form>
</body>
</html>
Saludos,