$(document).ready(function(){
	
	function ecg_schoolivesearch(){
		var extra = {
			state: $('#state').val(),
			school: $('#schoolname').val(),
			type: $('#schooltype').val(),
			research: 1
		};
		return extra;
	}
	
	$('#state').change(function(){
		$('#schoolname').removeData('oldval');
	});
	
	//wait until css and graphics have finished loading
	$(window).load(function(){
		$('#schoolname').ecglivesearch('School',{fetch:ecg_schoolivesearch});
	});
});