$(document).ready(function(){


	$('#membership').submit(function(){
		if($('#country').val() == "United States"  && $('#state').val() == "") {
			alert('You have missed to fill out your state');
			return false;	
		}
		return true;
		
	});






	$('#renew').submit(function(){
		

		if($('#firstName').val() == ''){
			alert('You have missed to fill in your first name.')
			return false;
		}
		if($('#lastName').val() == ''){
			alert('You have missed to fill in your lastName.')
			return false;
		}
		
		
		if($('#email').val() == ''){
			alert('You have missed to fill in your email.')
			return false;
		}
		
		if($('#address').val() == ''){
			alert('You have missed to fill in your address.')
			return false;
		}
		
		if($('#city').val() == ''){
			alert('You have missed to fill in your city.')
			return false;
		}
		
		if($('#zip').val() == ''){
			alert('You have missed to fill in your zip.')
			return false;
		}
		
		
		if($('#country').val() == "United States"  && $('#state').val() == "") {
			alert('You have missed to fill out your state');
			return false;	
		}
		return true;
		
	});
















});