Need to post some additional fields to my php file

Need to post some additional fields to my php file

I'm using the code below to send the selected option to a php file, and let the php file return something, that will be displayed in the div: details. 

So far no problem, but I wan't to post some additional information to my php file, namely two hidden input fields. I haven't got a clue how I can add these two input fields to the data being sended, so I appreciate any help.

My coding:
  1. <select style="margin-top:5px;" id="report">
  2.  <option value="">Select Category:</option>
  3.  <option value="spam">Spam</option>
  4.  <option value="tosv">TOS violation</option>
  5. </select>
  6. <input type="hidden" id="product_id" value="1234">
  7. <input type="hidden" id="extra" value="54321">
  8. <div id="details"></div>
  9. <script>


  10. $('#report').change(function(){
  11. $(report).hide();
  12.         $.ajax({
  13.             url: "something.php",
  14.             type: "post",
  15.             data: {option: $(this).find("option:selected").val()},
  16.             success: function(data){
  17.                 //adds the echoed response to our container
  18.                 $("#details").html(data);
  19.             }
  20.         });
  21.     });

  22. </script>