Bu işini görür mü?



<script>

var indx = document.getElementById('test').options.selectedIndex;
(function($) {
$(document).on("click", "#kagit_tipi", function() {
$.post("veriler.php", {
isim: document.getElementById('test').options[indx].innerHTML
})

.done(function(data) {
$("#result").html(data);
});
});
})(jQuery);

</script>