function counterBooking()
{
	var url = '/booking/booking.php?hotel=' + $F('accommodation-type');
	
	new Ajax.Request(url, 
	{
		method: 'get',
		onSuccess: function(xmlhttp) {}
	});
	
	return true;
}