
		function calcResult() {
			if (document.platesearch.app_state.value == "XX") {
				document.platesearch.number.disabled=true;
			} else {
				document.platesearch.number.disabled=false;
				}
		}

	function narrowResults() {
		grandtotal = document.platesearch.resultcount.value;
		chars = document.platesearch.number.value;
		//alert(chars);
		leng = chars.length+1;
		mutl = leng/6;
		//alert(chars.length);
		total = document.platesearch.resultcount.value;
		document.platesearch.resultcount.value = Math.round(total/leng);
		if (leng==6) { document.platesearch.resultcount.value = 1; }
	}

	function checkMe() {
			
			if (document.platesearch.number.value.length < 2 || document.platesearch.app_state.value=="XX") {
					alert("Please fill in a valid state and license plate number");
					return false;
			}
	}
		
