I have an array which is inside some object.How can I bind object to the combobox list .
Combobox code:
<select name="select-native-5" id="cmbDty"></select>
I need to bind Id and Ad field to the combobox
and my array object;

here is the how I get the object array,
Jquery Code:
$("#select-native-11").change(function () {
var dd = $("#select-native-11").val();
$.ajax({
type: "POST",
url: "MasaSiparis.aspx/AltMenuGetir2",
data: "{'p':'" + dd + "'}",
dataType: "json",
contentType: "application/json; charset=utf-8",
success: function (data) {
alert(data.d);
$.each(data.d, function (val, text) {
alert(val);
//I need to put here
});
});
},
error: function () { alert('HATA');}
});
});