$(document).ready(function() {
	$('select#leioFiltro').change(function(){
		$valor = $(this).val();
		if($valor == ''){
			window.location.href='/leio/index.php';
		}else{
			window.location.href='/leio/index.php?id=' + $valor;
		}
		//alert($valor);
	});
	
	
});
