I have a xslt file with dynamical filled drop-down-menu. I need to read the dynmical filled drop-down-menu with JavaScript and compare it with a defined value by myself. For example my defined value is Friday. My drop-down-menu is filled with all days of a week and if "Friday" is in my drop-down-menu I would like to do something. So the question is just how can I go through the drop-down-menu and compare each entry with my defined value?
This is a part of my xslt file for the drop-down-menu:
<th rowspan="2">plane
<select id="modelRangeDropdown" onclick="JavaScript_Filter(this)">
<option selected="selected">All</option>
<xsl:for-each select="logstore/plane">
<option>
<xsl:value-of select="Name" />
</option>
</xsl:for-each>
</select>
</th>