$("#form_field_field_type").live("click", function() { console.log("I reach over here"); });
I had an idea ... You can fire the change event instead of the click event, so use the following code:
$("#form_field_field_type").live("change", function() { console.log("I reach over here"); });
I hope this works!
<select>
<body>