Code
<html><head>
<script type="text/javascript">
function rnd(){
document.asim.khan.value=Math.floor((Math.random()*6)+1);
}
</script>
</head>
<body>
<form name="asim">
<center>
<input type="text" name="khan"/>
<input type="button" value="click" onclick="rnd()"/>
</centr>
</form>
</body>
</html>