;(function ($) {

	$(window).load(function() {
		var showProfessionalCategory = function() {
			if ($('#Form_ProfileForm_ProfessionalCategory').val() !== 'OTHER') {
				$('#OtherProfessionalCategory').hide();
			}
			else {
				$('#OtherProfessionalCategory').show();
			}
		};

		// Determine the other professional category visibility on page load.

		showProfessionalCategory();

		// Determine the visibility on category change.

		$('#Form_ProfileForm_ProfessionalCategory').change(function() {
			showProfessionalCategory();
		});
	});
})(jQuery);
