function ChangeBrand(me){ var brand1ID = document.all.ddlistFirstConsumeBrand.value; var brand2ID = document.all.ddlistSecondConsumeBrand.value; var brandvalue1=document.getElementById("txtbrand1"); var brandvalue2=document.getElementById("txtbrand2"); if((brand1ID=="10")&&(brand2ID=="-1")) { document.all.ddlistMilkPeriod.value=9; }
for(var i=0;i<document.getElementById("ddlistSecondConsumeBrand").options.length;i++) { if(document.getElementById("ddlistFirstConsumeBrand") == me && document.all.ddlistFirstConsumeBrand.selectedIndex==i) { brandvalue1.value=document.getElementById("ddlistFirstConsumeBrand").options[i].text; } if(document.getElementById("ddlistSecondConsumeBrand") == me && document.all.ddlistSecondConsumeBrand.selectedIndex==i) { brandvalue2.value=document.getElementById("ddlistSecondConsumeBrand").options[i].text; }