Ordenação de eventos de javascript assíncronos

Eu tenho o seguinte código:

$("#submit_financials").live('click', function(event){
    event.preventDefault();

    // using serialize here to pass the POST variables to the django view function
    var serialized_data = $("#financials_filter_form").serialize()

    $.post("/ajax/custom_filter/", serialized_data, function(response){
        // create a graph
    });
    $.post("/ajax/force_download/", serialized_data, function(response){
        alert('hello');
    });

});

No entanto, quando eu faço esse código, recebo a resposta 'olá'antes o gráfico. Por que isso está acontecendo? E como eu mudaria isso de tal forma que recebo o gráfico primeiro?

questionAnswers(3)

yourAnswerToTheQuestion