$(document).ready(function() {
	// validate form and set up AJAX submit
	$('#contactForm').validate();
	
	$('select#Service_Type').change(function(){		
		if ($(this).find('option:selected').text() == 'X-Ray Film Recycling Services') {
			$('.xray').show();
		} else {
			$('.xray').hide();
		}
	});
});

