How can I change my textarea
background image when I select a value from the select
menu?
<html>
<head>
<title> Your Title </title>
<script>
function kool()
{
`enter code here`abc.style.background="img1.bmp"
}
</script>
</head>
<body>
<textarea name="abc">
1) Make paper airplanes out of the exam. Aim them at the instructor's left nostril.
2) Bring cheerleaders during an exam.
</textarea>
<select id="xyz" onchange="kool()">
<option value="A">Image 1</option>
<option value="B">Image 2</option>
</select>
</body>
</html>