Ver Mensaje Individual
  #2 (permalink)  
Antiguo 19/07/2005, 14:58
Avatar de Saruman
Saruman
 
Fecha de Ingreso: mayo-2003
Ubicación: Panama city, Panama, Panama
Mensajes: 1.154
Antigüedad: 21 años, 8 meses
Puntos: 5
asi:

Código HTML:
<select name="cdmetodo_pago"  class="editables" onChange="activalo(this.value)">
		 <option value="0">Seleccione opción</option>  
		<option value = "T">Tarjeta de Crédito</option>
		<option value = "O">Otros</option>
  </select>
  
	  <select name="dstipo_tarjeta"  class="editables" disabled>
		  <option value="0">Seleccione opción</option>  
		   <option value ="Visa">Visa</option>
		   <option value ="MasterCard">MasterCard</option>
	   </select>
	
<script language="javascript">
 function activalo(valor) {
  var d = document.all;
  
  d.dstipo_tarjeta.disabled = true;
  
  if (valor == "T") {
   d.dstipo_tarjeta.disabled = false;
  }
 }
</script> 
__________________
Saruman

One Ring to rule them all, One Ring to find them, One Ring to bring them all and in the darkness bind them.