
function submitSpecialOffers()
{
	place = $('country-region').options[$('country-region').selectedIndex].value;
	type  = $('web-classification').options[$('web-classification').selectedIndex].value;
	
	url = '/special-offers';
	
	if (place != '') { 
		url += '/' + place;
	} 
	
	if (type != '') { 
		url += '/' + type;
	}
	
	self.location.href = url;
}
