How can I pass parameters using JSON, Ajax and JSP?

How can I pass parameters using JSON, Ajax and JSP?

Hi, I'm trying to use JSON to get some values from a database using Ajax, I'm working with JSP, this is what I'm doing:

  1.             $.ajax({
  2.                 type: "POST",
  3.                 url: "cutDateEvents.jsp",
  4.                 //data: "{cCardDropDown: document.getElementById('cCardDropDown').value, selection: 'FCDT'}",
  5.                 success: function(data){
  6.                      var output = $.parseJSON(data);
  7.                      $("#cutDateTable").append(output.table);
  8.                      alert(output.table);
  9.                      alert(output.dropDown);
  10.                 }
  11.             }); 

I'm sending two values, one which is a select value and the other a static string value, if I comment that line, it works with no problem, but if I don't nothing happens, I guess it's giving me an error but I can't see it in the Chrome debugger, nothing shows up, any help? thank you!!