$(document).on("change", '[id$=ddlPaymentType1]', function () {
var value = $(this).val();
if (value == '1') {
$('[id$=ddlAccount1]').text("Replace this with the values for selection 1");
}
else if (value == '2') {{
$('[id$=ddlAccount1]').text("Replace this with the values for selection 2");
}
else if (value == '3') {{
$('[id$=ddlAccount1]').text("Replace this with the values for selection 3");
}
else if (value == '4') {{
$('[id$=ddlAccount1]').text("Replace this with the values for selection 4");
}
else if (value == '5') {{
$('[id$=ddlAccount1]').text("Replace this with the values for selection 5");
}
else if (value == '6') {{
$('[id$=ddlAccount1]').text("Replace this with the values for selection 6");
}
/* TODO: Add the rest (not value=11, as that is the "VENDORS" category item (not a real selection in itself)) */
});