
function SetByAjax(a,b){

if(b!="first"){

    switch(a){
        case "Tutte":
                 $("#form2").load("allstrutture/box-prenota-tutte_strutture.php?ajax=ok");
            break;

        case "Hotel":
                $("#form2").load("booking/box-prenota-hotel.php?ajax=ok");
            break;

        case "Ristoranti":
                $("#form2").load("components/com_cafebos/cafe/box-prenota-hotel.php?ajax=ok");
            break;

        case "Pacchetti":
                $("#form2").load("components/com_packbos/offerta/box-prenota-hotel.php?ajax=ok");
            break;

        case "Residence":
                $("#form2").load("components/com_multibos/accomodation/box-prenota-hotel.php?ajax=ok&tipologia=2");
            break;

        case "Ville":
                $("#form2").load("components/com_multibos/accomodation/box-prenota-hotel.php?ajax=ok&tipologia=3");
            break;

        case "Agriturismo":
                $("#form2").load("components/com_multibos/accomodation/box-prenota-hotel.php?ajax=ok&tipologia=4");
            break;

        case "B&B":
                $("#form2").load("components/com_multibos/accomodation/box-prenota-hotel.php?ajax=ok&tipologia=5");
            break;
   }

}
else {
       switch(a){
           
        case "Tutte":

          $(window).ready(function(){
                $("#form2").load("allstrutture/box-prenota-tutte_strutture.php?ajax=ok");
          });
          break;

    } //chiudo switch
  } // chiudo else
} //chiudo la funzione
