JavaServer Pages (JSP) and JSTL - Problem in Mozilla

Hai friends,in a jsp Page when i select a value from select box, i have to refresh the page with values according to the value selected from Select box.its working fine with IE but not working with Mozilla
[226 byte] By [leo_michaela] at [2007-11-26 23:11:55]
# 1

Hai friends,

in a jsp Page when i select a value from select box, i have to refresh the page with values according to the value selected from Select box.

its working fine with IE but not working with Mozilla

This is the present code - the values are dynamically generated depends upon value in DB

<select name="selectedPartNumber" onchange="javascript:goSelected(this.options[this.selectedIndex].innerText, PartSurveyResponseForm);">

<option value='3' >3 rev a</option>

<option value='1' >1 rev a</option>

<option value='2' >2 rev a</option>

<option value='32' selected>32 rev t</option>

<option value='544' >544 rev u</option>

</select>

************************************************

javascript:

// goSelected is called when a different value is selected from Part/Rev drop down list box

function goSelected(selText,form) {

var formValResult = validatePartComplianceResponse(form);

if (formValResult == false) {

return false;

}

var selTextArray = selText.split(" ");

if ( form.modified.value == 'YES' ) {

form.selPartNumber.value = selTextArray[0];

form.selPartRev.value = selTextArray[2];

form.action = "/supplier/rohs/SavePartSurveyAction.do";

} else {

form.partNumber.value = selTextArray[0];

form.partRev.value = selTextArray[2];

form.action = "/supplier/rohs/PrePartSurveyAction.do";

}

form.submit();

return true;

}

leo_michaela at 2007-7-10 14:09:22 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2
Install the Developer Toolbar and/or Venkman Javascript Debugger extensions for FireFox. JS errors guaranteed ;)
BalusCa at 2007-7-10 14:09:22 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 3
hai friends,plz provide a solution for this compatability problem
leo_michaela at 2007-7-10 14:09:22 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...