jQuery(document).ready(function(){
	/* Combo de seleccionar pais */
	jQuery('select#seleccion_pais').change(function(){
		jQuery('form#contSeleccionPais').submit();
	});
	
	/* Ocultamos botón de combo de paises */
	jQuery('#ocultarBotonPais').hide();
});

