Selects in jquery

I want the select field to display empty if there is no value taken after the id or xml value if not empty.
Jquery now shows last option or xml value if not empty.

$(document).ready(function (e) {

  var Profiles1 = document.getElementById("value1");
  var CurrentValue1 = Profiles1.innerHTML;


  var options = [
    " ",
    "001",
    "002",
    "003",
    "004",
  ];

  $("#Profiles_value1").empty();
  $.each(options, function (i, p) {
    $("#Profiles_value1").append($("<option></option>").val(p).html(p));
    $("#Profiles_value1 option:contains('" + ProfilesCurrentValue1 + "')")
      .attr("selected", "selected"); 
  });
});
<table  style="padding-left:10;  margin-bottom:1;">
   <tr>
     <th align="Left" nowrap="true" style="padding:2; ">
        <span class="StandardLabel">Kalibracja:</span>
     </th>
        <td  align="Left" nowrap="false" style="padding:2 2 2 2 ;">
            <span id="">
               <xsl:for-each select="JobSpec">
                   <xsl:for-each select="JobCalibration">
                      <select  id="Profiles_value1" class="PlatesDiv_Enabled_SelectInput">
                         <xsl:apply-templates/>
                      </select>
                   </xsl:for-each>
                </xsl:for-each>
           </span>
        </td>
   </tr>
</table>

I want the select field to display empty if there is no value taken after the id or xml value if not empty.