<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
<Script language="JavaScript">
function checkZh(){
   ......
}
function checkEn(){
   ......
}
</Script>
</head><body>
<form name="form1" method="post" action="">
  <p>
    域名:<input type="text" name="textfield">
</p>
  <p>
    <input type="checkbox" name="checkbox" value="1" onpropertychange=checkZh();> 
    中文 
    <input type="checkbox" name="checkbox" value="2" onpropertychange=checkEn();>
英文 
<input type="checkbox" name="checkbox" value="3" onpropertychange=checkEn();>
英文  </p>
  <p>
    <input type="submit" name="Submit" value="提交">
</p>
</form>
</body>
</html>