The Option Tag

 
The option element defines an option in the drop-down list. The <option> tag can be used without any attributes, but you usually need the value attribute, which indicates what is sent to the server. Use this tag in conjunction with the select element, elsewhere it is meaningless.
 
Example Page in browser will look like
<select>
<option value =”BE(CS)”>BE(CS)</option>
<option value =”MCA”>MCA</option>
<option value =”BE(ECE)”>BE(ECE)</option>
<option value =”MSc(ECE)”>MSc(ECE)</option>
</select>