 
			
				17/12/2009, 09:59
			
			
			     |  
        |     |    |    Fecha de Ingreso: noviembre-2009  Ubicación: Buenos Aires, Argentina  
						Mensajes: 1.971
					  Antigüedad: 16 años Puntos: 65     |        |  
  |      Respuesta: actualizar despues de elegir texto        Si, se puede hacer. Se hace con javascript. Deberias tener un select asi   
<form action="algo.php" method="post" id="form1"> 
<select id="tuID" onchange="redirige()"> 
<option value="algo">Algun Valor</option> 
</select> 
</form>   
Y una funcion javascript   
function redirige(){   
document.getElementById("form1").submit();   
}   
Suerte!   
PD: gracias por el karma =)           |