<html>
<body>
Select your favorite fruit:
<select onchange="myFunction(this)">
<option>Apple</option>
<option>Orange</option>
<option>Pineapple</option>
<option>Banana</option>
</select>
<p id="demo"></p>
<script>
function myFunction(selTag) {
var x = selTag.options[selTag.selectedIndex].text;
document.getElementById("demo").innerHTML = "You selected: " + x;
}
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_option_text by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 Jan 2020 03:17:47 GMT -->
</html>