function formValidate()
{
		var error = false;
		
		
		$('regionError').hide();
		$('townError').hide();
		$('localityError').hide();
//		$('bedroomsError').hide();
//		$('lowPriceError').hide();
	//	$('highPriceError').hide();


		if ($F('initlocality') == '')
		{
			$('localityError').show();
			$('regionError').show();
			$('townError').show();
			error = true;
		}
		/**
		if ($F('bedrooms') == '')
		{
			$('bedroomsError').show();
			error = true;
		}

		if ($F('low_price') == '')
		{
			$('lowPriceError').show();
			error = true;
		}
		
		if ($F('high_price') == '')
		{
			$('highPriceError').show();
			error = true;
		}
		**/
	if (error == true)
		return false;
	else
		return true;
}

function checkLocality()
{
	if(document.getElementById('initlocality').value == '')
	{
		return false;
	}
}