Это должно быть:
<script>
function kool(input)
{
var el = document.getElementById('abc');
el.style.backgroundImage = 'url(' + input + ')';
}
</script>
</head>
<body>
<textarea name="abc" id="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(this.value)">
<option value="A.jpg">Image 1</option>
<option value="B.jpg">Image 2</option>
</select>
Убедитесь, что пути правильные.