Why isn't jQuery binding to the click event? When I click the selects, they don't alert, except for the one that I put onClick on.
<html>
<head>
<title>Robo</title>
<script type="text/javascript" src="jquery-1.4.2.min.js"></script><script type="text/javascript">
$('.changer').click(function(){alert('test');});
</script>
</head>
<body>
<select class="changer" name="dept" id="dept_select">
<option value="">Select a Department</option>
</select>
<select onclick="alert('ya');" class="changer" name="course" id="course_select">
<option value="">Select a Course</option>
</select>
<select class="changer" name="section" id="section_select">
<option value="">Select a Section</option>
</select>
</body>
</html>