function carica_box_ricerca(tipo, template)
{
    $('#box_ric').addClass('carica');
    $.ajax({
	type: "POST",
	url: template+"function/carica_box_ricerca.php",
	data: "tipo="+tipo,
	success: function(response)
	{
	    $("#box_ric").removeClass('carica');
	    $("#box_ric").addClass('show');
	    $("#box_ric").html(response);
	}
    });
}
function componi(valore, template)
{
    $("#select_categoria").removeClass('hide');
    $("#select_categoria").addClass('carica');
    $.ajax({
	type: "GET",
	url: template+"function/recupera_categorie.php",
	data: "id="+valore,
	success: function(response)
	{
	    $("#select_categoria").removeClass('carica');
	    $("#select_categoria").addClass('show');
	    $("#select_categoria").html(response);
	}
    });
}
