// JavaScript Document
function fillCats()
{
	
	var catList = document.getElementById("catlist");
	var catListCount = document.getElementById("catlistcount");
	clCount = 0;
	catList.value = "#";
	
	if (document.SearchForm.sector) {
		if(document.SearchForm.sector.value != 0)
			{
			catList.value += document.SearchForm.sector.value + "#";
			
			clCount ++;
			}
	}
	//if (document.SearchForm.location) {
	//	if(document.SearchForm.location.value != 0)
	//		{
			//catList.value += document.SearchForm.location.value + "#";
			//clCount ++;
	//		}				
	//}
	catListCount.value = clCount;
}

