function learnMoreSubmit() {
	if (document.learnMore.learnState.selectedIndex == 0){
		alert('Please select a state');
		return;
	}
	var stateName = stateArray[document.learnMore.learnState.selectedIndex];
	var usableState = stateName.replace(" ","");
	var location = "http://www.incafile.com/" + usableState + "-LLC-Corporation"; 
	document.learnMore.action = location;
	document.learnMore.submit();
}
function validateAndSubmit() {
	if (document.quickquote.entityType.options[document.quickquote.entityType.selectedIndex].text == "Select the entity type"){
		alert("Please select an entity type");
	}
	else if (document.quickquote.entityState.options[document.quickquote.entityState.selectedIndex].text == "Select state"){
			alert("Please select a state");
	}
	else {
		document.quickquote.submit();
	}
}
