function ChangeCategory(pNewCatId)
{
	if(pNewCatId==5010) document.searchForm.action="/cars";
	else if(pNewCatId==1020) document.searchForm.action="/property/residential_sales";
	else if(pNewCatId==1030) document.searchForm.action="/property/rental_properties";
	else if(pNewCatId==1080) document.searchForm.action="/property/accommodation_sharing";
	else if(pNewCatId==2020) document.searchForm.action="/recruitment";

	document.searchForm.CA.value=pNewCatId;
	if(document.searchForm.NI!=null) document.searchForm.NI.value = "";
	document.searchForm.method.value="search";
	document.searchForm.submit();
}