Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<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>
</html>