function showHouseType(locationid){

    document.forms[0].house_type.length = 0;
    var locationid=locationid;
        // alert(locattionD)
       //alert(locationid+"dd");
    var i,m;
    for (i=1;i < onecount; i++)
        {
            if (Related[i][0] == locationid )
            {
                document.forms[0].house_type.options[document.forms[0].house_type.length] = new Option( Related[i][1],i);

                }
        }
  }
function findHouseType(locationid,locattionD){

    document.forms[0].house_type.length = 0;
    var locationid=locationid;
	var locattionD=locattionD;
      //   alert(locattionD)
    //alert(locationid+"dd");
    var i;
    for (i=1;i < onecount; i++)
        {
            if (Related[i][0] == locationid )
            {   if(Related[i][1]==locattionD)
				  { document.forms[0].house_type.options[document.forms[0].house_type.length] = new Option( Related[i][1] ,Related[i][1]);
			       }
			     else{document.forms[0].house_type.options[document.forms[0].house_type.length] = new Option( Related[i][1],Related[i][1]);
			        }
                
           }

        }
}