“Hi, Mr. the Name from theCountry”.
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body>
<div id="wrapper">
<div id="header">
</div>
<div id="formbody">
<form name="personal">
Name: <input type="text" size="20" name="name"/> <br/>
Gender: <input type="radio" name="gender" value="Mr."/>Male
<input type="radio" name="gender" value="Mrs."/>Female<br/>
Country: <select name="country">
<option value="India">India</option>
<option value="Saudi Arabia">Saudi Arabia</option>
</select> <br/>
<input type="checkbox" name="phd" value="Dr."/>Are you a PhD holder?"<br/>
<input type="button" value="Submit" id ="submit"/>
</form>
</div>
</div>
<script>
//Write your JavaScript code here
</script>
</body>
</html>