It's onchange Event.
With jQuery it could be used like this
<html>
<head>
<script type="text/javascript" src="jquery-1.2.6.js"></script>
<script type="text/javascript">
$(document).ready(function()
{
$("#list").attr("selectedIndex", -1);
$("#list").change(function()
{
$("#answer").text($("#list option:selected").val());
});
});
</script>
</head>
<body>
<div id="answer">No answer</div>
<form>
Answer
<select id="list">
<option value="Answer A">A</option>
<option value="Answer B">B</option>
<option value="Answer C">C</option>
</select>
</form>
</body>
</html>