// for index form checked button
function showMe (it, box) {
  var vis = (box.checked) ? "block" : "none";
  document.getElementById(it).style.display = vis;
}
window.onload=function(){
	document.myform.it.checked = false;
}
/*Checks the Credit Rating Drop Down to see if they have poor credit
function checkOptions(option){
	var checkcredit = document.getElementById("alert-checkcredit");
	var submitbtn = document.getElementById("submitbtn");
	
	if (option == "Poor below <600>") {
		//alert("You're Poor!");
		checkcredit.style.display = "block";
		submitbtn.style.visibility = "hidden";
	}
	else {
		//alert("Not Poor");
		checkcredit.style.display = "none";
		submitbtn.style.visibility = "visible";
	}
}*/