I am trying to set the default value for a select drop down, but for some reason the below (which is the only recommended solution I could find) doesn't seem to work:
<div>
   <div class="label">Car hire</div>
   <select class="custom-dropdown" ng-model="quote.user.carHire">
      <option>Standard - 30 days</option>
      <option>Standard - 60 days</option>
      <option>Executive - 30 days</option>
      <option>Executive - 30 days</option>
      <option selected="selected">None</option>
   </select>
</div>
What am I missing?
 
    