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.incfile.com/" + usableState + "-LLC-Corporation"; 
	//var location = "https://72.47.207.97:8443/sitepreview/http/incfile.com/" + usableState + "-LLC-Corporation/";
	document.learnMore.action = location;
	document.learnMore.submit();
}
function validateAndSubmit() {
	//document.quickquote.action = "https://72.47.207.97:8443/sitepreview/http/incfile.com/form-order-now.php";
	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 if ((document.quickquote.entityState.options[document.quickquote.entityState.selectedIndex].text == "New York") && 
	(document.quickquote.entityType.options[document.quickquote.entityType.selectedIndex].text == "Nonprofit")){
			alert("At this time we do not offer nonprofit services for New York State.");
	}
	else {
		document.quickquote.submit();
	}
}
