dropdownlist not validating please help my code as follows
<script language="javascript" type="text/javascript">
function validate()
{
if(document.getElementById("<%=DropDownList1.ClientID%>").value=="0")
{
alert("please select");
//document.getElementById("<=%DropDownList1.ClientID%>").focus();
return false;
}
if(document.getElementById("<%=TextBox1.ClientID%>").value=="")
{
alert(please enter);
//document.getElementById("TextBox1").focus();
return false;
}
}