<!--

function validate(testform) {
if (testform.model.value == "") {
	window.alert("The Airplane Model must be select");
	return (false);}
 
if (testform.search.value == "") {
	window.alert("Please enter the search criteria."); 
	return (false);}
	
if (testform.search.value > 0 && testform.search.value < 100) {
    testform.search.value = testform.search.value + '-';}
	
return (true);
}

// -->