easyui select combobox 获取下拉选项值

<select id="xicx" name="xicx" class="easyui-combobox" style="width:150px;" data-options="required:true">
       <option value="">请选择</option>
       <option value="东阳">东阳</option>
       <option value="义乌">义乌</option>
       <option value="永康">永康</option>
</select>
通常状况下,在开发中获取下拉框选项值,咱们会用 
js:var yg_xs=document.getElementById("yg_xs").value; jq:var  xicx=$('#xicx').val();//县市
但在easyui中以上方法不可行,须要用easyUI规定的这种取值方式 var xicx = $("#xicx").combobox("getValue");//用这种才能获取select的选项值 var year=$('#YearOfBirthday').combobox('getText');//这种是获取text文本