bootstrap get value of dropdown code example
Example 1: javascript get html slider value
var x = document.getElementById("myRange").value
Example 2: how to set dropdown value in textbox using jquery
$('#chosen_a').change(function(){
//get the selected option's data-id value using jquery `.data()`
var criteria_rate = $(':selected',this).data('id');
//populate the rate.
$('.criteria_rate').val(criteria_rate);
});