<html>
<body>
<form>
<input type="checkbox" id="check1" />
</form>
<script type="text/javascript">
x=document.getElementById("check1");
document.write("Form element type is: ");
document.write(x.type);
</script>
</body>
</html>