function findschool_request(){       param = 'district='+document.getElementById('district').value;       http( 'POST' , 'remote.cfc?method=findSchool' , findschool_response , param );    }      function findschool_response(obj){       //document.getElementById('district').innerHTML = obj.district;      document.getElementById('schoollist').innerHTML = obj.school;	    }      