Select 和选项预定义文本

Select and option predefined text

突然有点疑惑,怎么在表单里有预定义的文本,但是不能选择文本。更像是一个文本,在表格上定义了主题。

我这里有这个简短的表格。

<div class="form-group">
  <label class="sr-only" for="cars">H</label>
  <select id="cars" name="cars" class="form-control"  required>
     <option>Cars</option>
     <option>Lamborghini</option>
     <option>Volvo</option>
     <option>Toyota</option>
     <option>Chervolet</option>
  </select>
</div>

所以重点是cars应该在form field但是我们不应该可以选择它。有人知道怎么做吗?

<option disabled>Cars</option>

http://www.w3.org/TR/html5/forms.html#attr-option-disabled

https://developer.mozilla.org/en/docs/Web/HTML/Element/option#Attributes