SELECT ПРИВЯЗКА ПО СЛОВАМ
Не пойму как сделать привязку, как здесь:
http://rits-auto.ru/formkredit
Вот как у меня сделан скилет:
http://xxxltver.ru/proba.php
Помогите пожалуйста:
admin@kinonovo.com
Подскажите???
-----------------------------------------------------------------
Здесь привязка по двум полям, а как сделать по четырем полям?
-----------------------------------------------------------------
<script language=javascript>
server = new Array();
server['Выбор марку машины'] = new Array();
server['1']=[['1', 'Выберите модель'],['1', 'MK Cross'],['1', 'MK'],['1', 'Emgrand'],]
server['2']=[['2', 'Выберите модель'],['2', 'X60'],['2', 'SOLANO '],['2', 'BREEZ Sedan '],['2', 'BREEZ ХЭTЧБЕК'],]
server['3']=[['3', 'Выберите модель'],['3', 'Golf'],['3', 'Jetta'],['3', 'Tiguan '],['3', ' Golf Plus'],]
server['4']=[['4', 'Выберите модель'],['4', 'Tingo'],['4', 'Tingo FL'],['4', 'Estina FL-C'],]
function menu_server_select2(a)
{
n=0;
var el=document.getElementById('menu_page');
s_name2=a;
while (el.childNodes.length>0)
{
el.removeChild(el.childNodes[el.childNodes.length-1]);
}
for(var server_name2 in server[a])
{
var opt = document.createElement("option");
opt.innerHTML=server[a][server_name2][1];
opt.name2=n;
el.appendChild(opt);
n++;
}
}
</script>
<div align="center" >
<select id="menu_server" onchange="menu_server_select2(this.options[this.selectedIndex].value);" style="width: 200px;">
<option selected="selected" value="0">Выберите бренд</option>
<option value="1">Gelly</option>
<option value="2">Lifan</option>
<option value="3">Volkswagen</option>
<option value="4">VORTEX</option>
</select>
<br>
<select id="menu_page" onchange="menu_page_select2(this.options[this.selectedIndex].value,this.options[this.selectedIndex].name2);" style="width: 200px;">
<option value="" selected="selected"></option>
</select>
<br>
-----------------------------------------------------------------