// JavaScript Document
function checkform(){
	var checkID=document.respond.insurance;
	
	if (!checkID.checked) {
		alert('You must check the "I do not have insurance" box.');
        return false;
    }
	document.respond.submit();
}