Skopiowanie wartości wybranej opcji pola select:
- wykorzystanie selectedIndex
- wykorzystanie get(0)
$(document).ready(function () {
$('#select_sql').change(function () {
var idx = $(this).get(0).selectedIndex;
var value = $(this).get(0).options[idx].value;
$('#sql').val(value);
});
});