Manipular select con javascript
06 de Enero, 2010
Función para hacer submit sobre formulario al cambiar select:
function cambio_select(theList){
if (theList.value!='null' && theList.selectedIndex > 1 ) {
theList.form.submit();
}
}