
	$(document).ready(function(){
		$("#idioma").change(function() {
			
			var sIdioma = $('#idioma').val();
			
			if (sIdioma != "") {
				$.ajax({
					type: "POST",
					url: "busca_query.php",
					data: "idioma=" + sIdioma,
					dataType: "html",
					success: function(msg) {
						eventResult(msg);
					}
				});
			}
		});
	});
	
	function eventResult(msg) {
		//alert(msg);
		$('#paisesSelect').html(msg);
	}
	
	function checkForm() {
		if ($('#idioma').val() == "") {
			$('#idiomaMessage').html('Selecione um Idioma');
			return false;
		} else {
			return true;
		}
	}

