Hola alexei,
supongo que eres consciente que el script lo hice con los nombres que me indicaste
A ver si esto es lo que necesitas
Código PHP:
<script language="JavaScript">
function cambiar(cual,que)
{
if(cual.selectedIndex == 0){return false}
else
{
switch (cual.value)
{
case "material" :
que.keywords[1].style.display = 'inline';
que.keywords[0].style.display = 'none';
break;
case "origen":
que.keywords[1].style.display = 'inline';
que.keywords[0].style.display = 'none';
break;
case "precio":
que.keywords[0].style.display = 'inline';
que.keywords[1].style.display = 'none';
break;
}
}
}
</script>
</head>
<body>
<form name="form1" method="post" action="">
<select name="gal" onchange = "cambiar(this,this.form)">
<option>Selecciona</option>
<option value="material">material</option>
<option value="origen">origen</option>
<option value="precio">precio</option>
</select>
<select name="keywords" style="display:none">
<option>Selecciona</option>
<option>Menos de 30</option>
<option>de 30 a 100</option>
<option>más de 100</option>
</select>
<br>
<input type="text" name="keywords" style="display:none">
</form>
</body>
un saludo