I know I must be overlooking something. Here is my code, why is this not working:
<label>
Customer</label>
<%= Html.DropDownList("CustCodes", (SelectList)ViewData["CustCodes"], "-- Select a Customer --", null) %>
<script type="text/javascript">
$(document).ready(function() {
$("select#CustCodes").bind("change", gotoDivison);
});
function gotoDivision() {
alert("/ServiceCall/Open");
}
</script>