Forum Moderators: open
function setSelectOptions()
{
// Get the selection from the first select box
var s1 = <get your selected value here>;
// Get the selection from the second select box
var s2 = <get your selected value here>;
if( s1 == 'a' && s2 == 'z' )
{
// Set select box 3 options to some set
// ...
}
else if( s1 == 'a' && s2 == 'y' )
{
// Set select box 3 options to this set
// ...
}
else if( s1 == 'b' && s2 == 'z' )
{
// Set select box 3 options to this set
// ...
}
else if( s1 == 'b' && s2 == 'y' )
{
// Set select box 3 options to this set
// ...
}
// Etc.
}
Hope that helps.