$(document).ready(function(){
// check function
$("#email").click(function () {
      var text = '123';
      $("#check").val(text);
    });
$('#JavaError').hide();	
$('#phoneT').hide();
$('#pastorT').hide();
$('#countryF').hide();
$('.bringFields').hide();
$('#state, #zip').attr('class', '');
$('#form').show();
var country = "US";

	$('#org').change(function(){
		if ($(this).val() == ''){
			$('#pastorT').hide();
		}else{
			$('#pastorT').show();
		}
	});
	$('#LeadYes').click(function(){
			$('#phoneT').show();
	});
	$('#LeadNo').click(function(){
			$('#phoneT').hide();
	});
	function NONclick(){
			$('#zipF').hide();
			$('#countryF').show();
			$('#zip').val("NON");
			country = "NON";
	};
	
	function USclick(){
	if (country == "NON"){
			$('#zip').val("");
	}
			$('#zipF').show();
			$('#countryF').hide();
			country = "US";
	};
	
	$('#state').change(function(){
		if ($(this).val() == 'NON'){
			NONclick();
		}else{
			USclick();
		}
	});
	
	$('#bringCheck').click(function(){
		if($("#bringCheck").attr("checked")==true){
			$(".bringFields").show();
			$('#register').attr('action', 'http://beyondthefartheststar.com/wp-content/themes/beyond/action/registration1029.php');
			$('#state, #zip').attr('class', 'validate[required] required');			
		}else{
			$(".bringFields").hide();
			$('#register').attr('action', 'http://beyondthefartheststar.com/wp-content/themes/beyond/action/Connect1029.php');
			$('#state, #zip').attr('class', '');
		}
	});
});
