I am New in web designing
What i want is i have one List/Menu its called Make it's containing some vehicles Brands when i selected a brand name i want another list/menu display the models that relevant to Brand
this is a screen shot that what i need
[IMG]http://i256.photobucket.com/albums/hh192/magnificent_roo/model.gif[/IMG]
some of vehicle websites are using this thing
Here is my codes
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body><form action="" method="post" name="F2" id="F2">
<p>Make
<select name="list" id="list">
<option value="DESOTO ">DESOTO </option>
<option value="DODGE ">DODGE </option>
<option value="DUTTON ">DUTTON </option>
<option value="EDSEL ">EDSEL </option>
<option value="ELFIN ">ELFIN </option>
<option value="EUNOS ">EUNOS </option>
<option value="FERRARI ">FERRARI </option>
<option value="FIAT ">FIAT </option>
<option value="FORD ">FORD </option>
</select>
</p>
<p>Model
<select name="select" id="select">
<option>SELECT</option>
</select>
</p>
</form>
</body>
</html>