
$(document).ready(function(){

	$("#eventForm select[name='type']").change(function(){
		
		type = $(this).val();
		
		if(type == "Standard") {
			$("fieldset#contact").show("fast");
			$("fieldset#quickcontact").hide();
			
			$("#eventForm input[name='firstname']").val("");
			$("#eventForm input[name='lastname']").val("");
			$("#eventForm input[name='address']").val("");
			$("#eventForm input[name='city']").val("");
			$("#eventForm input[name='province']").val("");
			$("#eventForm input[name='postalcode']").val("");
			$("#eventForm input[name='dayphone']").val("");
			$("#eventForm input[name='email']").val("");
		} else if (type == "Quick Registration") {
			$("fieldset#quickcontact").show("fast");
			$("fieldset#contact").hide();
			
			$("#eventForm input[name='firstname']").val("-");
			$("#eventForm input[name='lastname']").val("-");
			$("#eventForm input[name='address']").val("-");
			$("#eventForm input[name='city']").val("-");
			$("#eventForm input[name='province']").val("-");
			$("#eventForm input[name='postalcode']").val("-");
			$("#eventForm input[name='dayphone']").val("-");
			$("#eventForm input[name='email']").val("test@test.com");
			$("#eventForm select[name='yearofbirth'] option[value='2004']").attr('selected', 'selected');
			$("#eventForm select[name='agegroup'] option[value='MJ']").attr('selected', 'selected');
		}else {
			$("fieldset#contact").hide();
			$("fieldset#quickcontact").hide();
		}
		
	}).change();
	
});