function ChangeLodaCityValue(formname,processid,categoryid) { if(eval("document."+formname+".cityid").value==0) { document.getElementById("districtid").setAttribute("class", "marketsearchinputselectdisabled"); document.getElementById("districtpartid").setAttribute("class", "marketsearchinputselectdisabled"); document.getElementById("districtid").disabled = true; document.getElementById("districtpartid").disabled = true; eval("document."+formname+".districtid").value = 0; eval("document."+formname+".districtpartid").value = 0; } else { document.getElementById("districtid").setAttribute("class", "marketsearchinputselect"); document.getElementById("districtid").disabled = false; $.post("index.php?url=ma.emptypopupdata", { 'cityid':$('#cityid').val(), 'type':processid, 'categoryid':categoryid}, function(data){ document.getElementById("districtid").innerHTML = data; },"html" ); return false; } } function ChangeLodaDistrictValue(formname,processid,categoryid) { if(eval("document."+formname+".districtid").value==0) { document.getElementById("districtpartid").setAttribute("class", "marketsearchinputselectdisabled"); document.getElementById("districtpartid").disabled = true; eval("document."+formname+".districtpartid").value = 0; } else { document.getElementById("districtpartid").setAttribute("class", "marketsearchinputselect"); document.getElementById("districtpartid").disabled = false; $.post("index.php?url=ma.emptypopupdata", { 'districtid':$('#districtid').val(), 'type':processid, 'categoryid':categoryid}, function(data){ document.getElementById("districtpartid").innerHTML = data; },"html" ); return false; } }