
	function exibeModeloSelect( ingresso_tipo_id ){
		$.ajax({
			type:"POST",
		   	url:"../includes/comboIngresso.php",
		   	data:"acao=exibeModeloSelect&ingresso_tipo_id=" + ingresso_tipo_id,
		   	beforeSend: function(){
		   	},
		   	success: function(txt){
				$('#ingresso_tipo_quant').html(txt);
		   	},
		   	error: function(txt){
				$('#ingresso_tipo_quant').html('<option value="">error</option>');
			}
		});
	}

	function removeAllTabs() {
	   $("#tabscontent ul").css("display","none");
	   $("#tabs li").removeClass("current");
	}

	$(document).ready(function() {
	
		$("#tabs li").click(function () {

			tabId = this.id;
			removeAllTabs();
			$( "#tabs li#"+tabId ).addClass("current");
			$( "#tabscontent #"+tabId ).css("display","block");

		});

		$("#ingresso_tipo_id").change(function(){
			exibeModeloSelect( $(this).val() );
		});

	});  