Ver Mensaje Individual
  #3 (permalink)  
Antiguo 17/03/2007, 09:22
yaviz
 
Fecha de Ingreso: diciembre-2004
Mensajes: 371
Antigüedad: 20 años
Puntos: 0
Re: Problema con select y documet.form....

Código:
<html>
<script type="text/javascript">
function pasar()
  {  
   document.rellenar.texto.options[0].text=5;
   document.rellenar.texto.options[0].value=5;
  }
</script>
<body>
<form  name="rellenar">
 <select  name="texto">
  		 <option value="DVDRip">DVDRip</option>
</select>
</form>
<INPUT TYPE="submit" NAME="boton" VALUE="boton"  onclick='pasar()'>
</body>

</html>

Perfecto muchas gracias.