// JavaScript Document
			$(document).ready(function() {
				$("#texto-outros").hide();
				$("#texto-casual").hide();			
			});

			function onSelectChangeJogatina(){
				var selected = $("#tipo option:selected");		
				if(selected.val() == 2){
					$("#texto-outros").hide();
					$("#texto-casual").show();
				} else if(selected.val() == 1){
					$("#texto-casual").hide();
					$("#texto-outros").show();
				} else if(selected.val() == 0){
					$("#texto-casual").hide();
					$("#texto-outros").hide();
				} else if(selected.val() == 3){
					$("#texto-casual").hide();
					$("#texto-outros").show();
				} else if(selected.val() == 4){
					$("#texto-casual").show();
					$("#texto-outros").hide();
				}
	}
