// JavaScript Document
$().ready(function() {
	$("select[name=tipo]").change(function(){
		$('select[name=lista_convenios]').html('<option value="">Carregando...</option>');
		$.post('http://www.aepesp.com.br/portal/var/usr/opcoes-convenio.php', 
		//$.post('../../usr/opcoes-convenio.php', 				 
		{ tipo : $(this).val() }, 
			function(resposta){
				
				$('select[name=lista_convenios]').html(resposta);
			}
			
		);
	});
		

});

