function selectDpList(dp) {
var sIndex = dp.selectedIndex;//返回选中是第几项 0,1....
var sText = dp.options[dp.selectedIndex].text;//返回选中的文本--文本1,文本2 ...
var sValue = dp.value;//返回选中的文本--v1,v2 ...
}
<asp:DropDownList runat="server" CssClass="productType" ID="dp_ProductTag" Width="153px" onchange="JavaScript:selectDpList(this)">
<asp:ListItem Text="文本1" Value=""></asp:ListItem>
<asp:ListItem Text="文本2" Value=""></asp:ListItem>
<asp:ListItem Text="文本3" Value=""></asp:ListItem>
</asp:DropDownList>