How to replace ComboBox values on a button click?

How to replace ComboBox values on a button click?

I have a button and I want to replace the elements of the combobox.

  1.   <select id="combobox">
  2.     <option value="">Select an option</option>
  3.     <option value="opa">OpA</option>
  4.     <option value="opb">OpBt</option>
  5.     <option value="opc">OpC</option>
  6.   </select>
I want when a user clicks on the button, the elements of combBox changes to a retrieved data from my database.

For instance, change all:

 <option value="opa">OpA</option>
  <option value="opb">OpBt</option>
  <option value="opc">OpC</option>


to:

 <option value="IT">IT</option>
  <option value="Accounting">Accounting</option>
  <option value="HR">HR</option>


I tried .html() but it is not going well.

  1.       function loaddata() {
  2.                   $.ajax({
  3.                       type: "POST",
  4.                       contentType: "application/json; charset=utf-8",
  5.                       url: "WebService.asmx/GetData",
  6.                       data: "{}",
  7.                       dataType: "json",
  8.                       success: function (data) {
  9.                           response(data.d);
  10.                           $("#comboox").html();

  11.                       },
  12.                       error: function (result) {
  13.                           alert(result);
  14.                       }
  15.                   });
  16.               }