I'm testing my web page for accessibility using JAWS reader. Below is a sample HTML markup from my page.
<label for="MySelectBox">Select a color</label>
<select id="MySelectBox">
<option>Red</option>
<option>Blue</option>
<option>Green</option>
</select>
When navigating the page through keyboard and changing the select box value using Down arrow key, JAWS is not reading the changing values as you press down arrow.
Anything I'm missing in here? Should I add any additional ARIA labels to make JAWS recognize the change event?