I have a page containing a Drop-Down Box, with an image. How do I change the image upon selecting a different option in the Drop-Down Box?
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
</head>
<body>
<select name="select">
<option selected>Display Image 1</option>
<option>Display Image 2</option>
<option>Display Image 3</option>
<option>Display Image 4</option>
<option>Display Image 5</option>
</select>
<img src="Image 1.jpg">
</body>
</html>