$(document).ready(function() {
	var valore = $("#idLingua").val();
	//alert (valore);
	$("#boxShowKart").slideDown('fast');
	$.get("/code-kart/", { idl: valore, p: "1" },function(data){
		$("#boxShowKart").html(data);
	});
	
});
