разметка формы:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id = "onblur-callme">
<form action="#" method="post" id="test" name="form1">
<fieldset>
<legend>Contact information</legend>
<table>
<tr>
<td>
<td>
<li>
<label for="name">Name:</label>
<input type="text" name="name" id="name" />
</li>
<li>
<label for="name">Surname:</label>
<input type="text" name="surname" id="surname" />
</li>
<li>
<label for="name">Lastname</label>
<input type="text" name="lastname" id="lastname" />
</li>
</td>
<td>
<li>
<label for="email">Email:</label>
<input type="text" name="email" id="email" />
</li>
<li>
<label for="pass">Password:</label>
<input type="text" name="pass" id="pass" />
</li>
</td>
</ul>
</tr>
</table>
<p><input type="submit" name="send" id="send" value="Send" /></p>
</fieldset>
<br>
<table>
<tr>
<td>
<fieldset>
<div id = "flags" onchange="checks()">
<legend>Producer</legend>
<li>
<input type="checkbox" name = "checkbox1" id = "check1" value="Volswagen"> Volswagen
</li>
<li>
<input type="checkbox" name = "checkbox1" id = "check2" value="Hyundai">Hyundai
</li>
<li>
<input type="checkbox" name = "checkbox1" id = "check3" value="Vaz"> Vaz
</li>
<li>
<input type="checkbox" name = "checkbox1" id = "check4" value="Zaz"> Zaz
</li>
<li>
<input type="checkbox" name = "checkbox1" id = "check5" value="Tesla"> Tesla
</li>
</div>
</fieldset>
</td>
<td>
<fieldset>
<legend>Color Tint</legend>
<li>
<input type="radio" name = "radio1" value="Blue"> Blue
</li>
<li>
<input type="radio" name = "radio1" value="Red"> Red
</li>
<li>
<input type="radio" name = "radio1" value="White"> White
</li>
<br>
<li>
<input type="radio" name = "radio2" value=" "> <label id = "lb1"></label>
</li>
<li>
<input type="radio" name = "radio2" value=""> <label id = "lb2"></label>
</li>
<li>
<input type="radio" name = "radio2" value=""> <label id = "lb3"></label>
</li>
</fieldset>
</td>
<td>
<fieldset>
<legend>Brand Model</legend>
<select name="mark" onChange="MkHouseValues(this.selectedIndex)" onclick="run1()">
<option value="Qwer">Qwer</option>
<option value="Cvwa">Cvwa</option>
<option value="Vwqqs">Vwqqs</option>
<option value="Vqs">Vqs</option>
<option value="Jed">Jed</option>
</select>
<select name="model" onclick="run2()">
<option value="N/A"></option>
</select>
</fieldset>
</td>
</tr>
</table>
</form>
</div>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script src="script.js"></script>
</body>
</html>