populateLists: function(executionLevel, contractor, program) {
var _chart = this;
$.each($('select#contractor option'), function() {
if ($(this).val() != "all") {
$("select#contractor option[value='" + $(this).val() + "']").remove();
}
});
$.each($('select#program option'), function() {
if ($(this).val() != "all") {
$("select#program option[value='" + $(this).val() + "']").remove();
}
});
$.post(
"BuildControls.ashx",
{el:executionLevel,cont:contractor,prog:program},
function(data, status, request){_chart.buildListCallback(data, status, request);},
'json'
);
$('select#contractor').val(contractor);
$('select#program').val(program);
}