In my company want to modify one ASp.net Project,
<asp:DropDownList ID="drdIssuer" runat="server" CssClass="txtfield" AutoPostBack="True" OnSelectedIndexChanged="drdIssuer_SelectedIndexChanged" onchange="showvalues();">
                    <asp:ListItem>Val1</asp:ListItem>
                    <asp:ListItem>Val1</asp:ListItem>
                    <asp:ListItem>Val1</asp:ListItem>
                    <asp:ListItem>Val1</asp:ListItem>
                </asp:DropDownList>
This is html asp code,And JAvascript like this,
 <script type="text/javascript">
       function showvalues()
       {
           alert('Yes');
       }
       </script>
When I change dropdown listing I want to work showvalues() function how do i do it,Can you guys help me....
 
     
     
    