// JavaScript Document
$().ready(function(){
  $("select[name=tipoCurso]").change(function(){
    $('select[name=Curso]').html('<option value="">...</option>');
    $.post('combo_cursos.php',
    { tipoCurso : $(this).val() },
    function(resposta){
      $('select[name=Curso]').html(resposta);
      }
    );
  });
});
