$(function(){
	   
	hideAll();
    $("#complete-button").attr("disabled","disabled");
		
    $("#Attendees").change(function() {
		var num_att = $("#Attendees option:selected").text();
		
		if (num_att == 'Please Choose') {
			hideAll();
			$("#complete-button").attr("disabled","true");
		};
		if (num_att == 1) {
			hideAll();
			$("#att-1").show();
			$("#complete-button").removeAttr("disabled");
			$("#sem-quantity").val("1");
		};
		if (num_att == 2) {
			hideAll();
			$("#att-1").show();
			$("#att-2").show();
			$("#complete-button").removeAttr("disabled");
			$("#sem-quantity").val("2");
		};
		if (num_att == 3) {
			hideAll();
			$("#att-1").show();
			$("#att-2").show();
			$("#att-3").show();
			$("#complete-button").removeAttr("disabled");
			$("#sem-quantity").val("3");
		};
		if (num_att == 4) {
			hideAll();
			$("#att-1").show();
			$("#att-2").show();
			$("#att-3").show();
			$("#att-4").show();
			$("#complete-button").removeAttr("disabled");
			$("#sem-quantity").val("4");
		};
		if (num_att == 5) {
			hideAll();
			$("#att-1").show();
			$("#att-2").show();
			$("#att-3").show();
			$("#att-4").show();
			$("#att-5").show();
			$("#complete-button").removeAttr("disabled");
			$("#sem-quantity").val("5");
		};
		
	});
	
});

function hideAll(){
	$("#att-1").hide();
		$("#att-2").hide();
		$("#att-3").hide();
		$("#att-4").hide();
		$("#att-5").hide();
}
