Jquery javascript Dropdown selected value , Text

How to get the selected value of the dropdown in Jquery

var StrCountryValue = $('#<%=ddlCountries.ClientID %>').val();

to get selected text of the dropdown

var StrCountryText = $("#<%=ddlCountries.ClientID %> option:selected").text();