Jquery JSONP POST

Jquery JSONP POST

 I am a beginner in jquery and JSON below is the script I have which sends the JSONP request.
   It works fine but I am looking how to post the request so that the parameters are not shown in the browser's firebug. In firebug it shows POST as protocol  and also the parameters
                 
  1.                   $.post(postService,function(data){
  2.                 //    type: "POST";
  3.                     var resText = trim(data.returnstr);
  4.                     if(resText.indexOf(':') > 0){
  5.                         code =  resText.substring(resText.indexOf(':')+1, resText.length);
  6.                     }
  7.                     $(".thanksWrapper").css("display", "block"); //display thank you message logic
  8.        
  9.                  },"jsonp");