Select - Ivan-Kalatchev/BootstrapExtended GitHub Wiki
The select is a HTML component, that presents am option (a/b/c) value.

<div class="be-select" style="width:200px;">
<select>
<option value="0">Select car:</option>
<option value="1">Audi</option>
<option value="2">BMW</option>
</select>
</div>be-select
You can get the value of certain select with JQuery, as it follows below.
$("#ID").val()