<!DOCTYPE html>
<html>
<body>
<select>
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="vw">VW</option>
<option value="audi" selected>Audi</option>
</select>
</body>
</html>
What javascript command can I use to get the position of the currently selected element in this "list" of options? Example: Volvo = 0 (because it is the first one on the list, so I imagine it to be 0), saab = 1.