Appending to jQuery response

Appending to jQuery response

Hi

I need to make a second request from within my original query and append the results.  But I am not sure how to go about doing this.  Here is the js code I have right now. 
 
  1. $.fn.show =

    function(Id) {

    var ajaxOpts = {

    type:

    "POST",

    url:

    "/TestPage.aspx/Variable",

    data:

    "{VariableID: '" + Id+ "'}",

    contentType:

    "application/json; charset=utf-8",

    dataType:

    "json",

    success:

    function(response) {

    var result1 = getAspNetResponse(response);

    // Make a second request to another aspx page and if there is data then appens to original result

  2. var result2 = Makesecondrequest();

    if (result2 != null)

    result1 += result2;

    },
  3. error: function(response) {

    alert('E2030569841: There is an error while loading data.');

    }

    };

    $.ajax(ajaxOpts);

    }


Thanks in advance.