function changeProvince(province)
	{
		box = document.forms['searchForm'].select_regio;
		for (var i = 0; i < box.length; i++) 
		{
			if(box.options[i].value == province)
			{
			box.options[i].selected = true;
			
			}
		}
		 goCommit();
		
	}