$(document).ready(function(){

	$("select#InscritoCategoria").change(function() {
		$("select#InscritoCategoria option:selected").each(function () {
			showOrHideFormItems( $(this).val() )
		});
	});

	$("select#InscritoCategoria option:selected").each(function () {
		showOrHideFormItems( $(this).val() )
	});

	function showOrHideFormItems( valSelected ) {
		if ( valSelected == 'Estudante' ) {
			$('.cat_profissional').css('display','none')
			$('.cat_estudante').css('display','block')
		} else {
			if ( valSelected == 'Profissional' ) {
				$('.cat_profissional').css('display','block')
				$('.cat_estudante').css('display','none')
			} else {
				$('.cat_profissional').css('display','none')
				$('.cat_estudante').css('display','none')
			}
		}
	}

})