function find_city(country){
	
	$.ajax({
	   url: "/ajax/hotels/find_city.php",
	   type: "POST",
	   data: ({
		   	 	country: country,
			  }),
	   success: function(msg){
         $('#find_city').html(msg);
      	}
	 });
	 reviews_country(country);
};

function find_hotel(city){
	
	$.ajax({
	   url: "/ajax/hotels/find_hotel.php",
	   type: "POST",
	   data: ({
		   	 	city: city,
			  }),
	   success: function(msg){
         $('.right_big_box').html(msg);
      	}
	 });
	 reviews_city(city);
};

function reviews_country(country){
	$.ajax({
	   url: "/ajax/hotels/reviews_country.php",
	   type: "POST",
	   data: ({
		   	 	country: country,
			  }),
	   success: function(msg){
         $('#dynamic_recommended').html(msg);
      	}
	 });
	
	};
function reviews_city(city){
	$.ajax({
	   url: "/ajax/hotels/reviews_city.php",
	   type: "POST",
	   data: ({
		   	 	city: city,
			  }),
	   success: function(msg){
         $('#dynamic_recommended').html(msg);
      	}
	 });
	
	};
