select获取当前选中的value
$('#DDLDEP').change(function () { var depId = $(this).children('option:selected').val(); });
select根据当前的text设置选中项
$("#DDLDEP option[text='当前文本']").attr("selected", true);