i claim my variable with javascript
<script type="text/javascript">{
function choose(x)
this.x=x;
}
var x= document.getElementById("Select1").selectedIndex;
i want to use this x variable in my C# code
<%SqlParameter param = new SqlParameter("@ID", SqlDbType.Int);
param.Value =(i want to write x right here) how???????????%>