I have this helper in meteor
terms:function(){
    return Terms.find().fetch().map(function(it){ return it.termnames; });
  }
which only returns the termname but i am also interested in the _id.
This is my current html
<select name="dd">
{{#each terms}}
<option value="">{{this}}</option>
{{/each}}
</select>
How can i return the termnames and the _id and display them in my view?.