	function goSerchFind(type){
		var frm = document.frm;
		if(type == "region"){
			document.getElementById("searchText").value = "";
			document.getElementById("city").value = "";
			frm.action = "/support/findingService/salesLocations.do";
			frm.submit();
		}else if(type == "city"){
			document.getElementById("searchText").value = "";
			frm.action = "/support/findingService/salesLocations.do";
			frm.submit();
		}else if(type == "text"){
			frm.action = "/support/findingService/salesLocations.do";
			frm.submit();
		}
	}
	function getPagePath() {
	  	return "/support/findingService/salesLocations.do";
	}