function doClear(theText) { if (theText.value == theText.defaultValue) { theText.value = "" } }
function doDefault(theText) { if (theText.value == "") { theText.value = theText.defaultValue } }

function lookup(inputString) {
		jQuery.post("load_then.php", {queryString: ""+inputString+""}, function(data){
				jQuery('#model').empty();
				jQuery('#model').append(data);
			});
		
	} // lookup
		
/*jQuery(document).ready(function(){ 


	jQuery.get("load_start.php", function(data){ jQuery('#inputString').append(data);
	
	var options = {
	  url: "send.php",
		success: function(msg){
			alert(  msg );
		}
	};	
	
	jQuery('#submit_button').click(function() {
		jQuery("form#submitForm").ajaxSubmit(options);
	});	
	
	
}); 
});*/
