<html>
<body>
Select your favorite fruit:
<select>
<option id="apple">Apple</option>
<option id="orange">Orange</option>
<option id="pineapple">Pineapple</option>
<option id="banana">Banana</option>
</select>
<p>Click the button to change the text for the apple option in the dropdown list.</p>
<button onclick="myFunction()">Try it</button>
<script>
function myFunction() {
document.getElementById("apple").text = "newTextForApple";
}
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_option_text3 by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 05 Jun 2019 14:47:53 GMT -->
</html>