$(document).ready(function(){
	$.getJSON("/ensenya?&jsoncallback=?",{pais:196}, 
			function(response) {
						$("#filtro_ens").autocomplete(response,{
							formatItem: function(item) {
								return item.nombre;
							}	
						}).result(function(event, item) {
							//alert(item.idEnsenya);
							$("#select_ens option[value='" +item.idEnsenya+ "']").attr("selected","selected");
							
						});
			});
});

function filtrarDistribuidor(id){
	
}
