function Search_property(url){
	//alert(url);
id_career=document.getElementById('career').value;
id_province=document.getElementById('province').value;
district=document.getElementById('district2').value;
keyword_s=document.getElementById('keyword_s').value;
Path=url;
if(id_career!="0"){
Path += "jcareer="+id_career+"&";
}
if(id_province!='0') {
Path += "jprovince="+id_province+"&";
}
if(district!='0') {
Path += "jdistrict="+district+"&";
}
if(keyword_s!='0') {
Path += "jkeyword_s="+keyword_s+"&";
}
	window.open(Path,'_self'); return false;
}
