I have 3 array one for value and 2nd one for option name and third one for price.
I want to create dynamic option list using value and option name (value is channel id and channel name)
on selection of channel name display sum of price of channel in other textbox
i am using below query to display dynamic option name.
var select = document.getElementById("selectNumber4");
var options = channel;
console.log(options);
$('#selectNumber4').html('');
for( option in options ) {
select.add( new Option( options[option]) );
};