function ao(c,txt,val,idx){ c.options[idx] = new Option(txt,val); } function setSizes(c, s){ var id; var x=0; var opt; if (!s || !c) return; if (c.selectedIndex < 1){ clearSizes(); return; } id = c.options[c.selectedIndex].value; s.options.length = 0; opt = new Option('Please select a size', ''); s.options[x++] = opt; switch(id){ case "WHITE W/BLACK & WHITE VOLLEYBALLS": ao(s, "SIZE 10-13 (NOT SHOE SIZE- SEE SIZES BELOW) - $5.39","SIZE 10-13 (NOT SHOE SIZE- SEE SIZES BELOW)", x++); ao(s, "SIZE 9-11 (NOT SHOE SIZE- SEE SIZES BELOW) - $5.19","SIZE 9-11 (NOT SHOE SIZE- SEE SIZES BELOW)", x++); break; case "NAVY W/BLACK & WHITE VOLLEYBALLS": ao(s, "SIZE 10-13 (NOT SHOE SIZE- SEE SIZES BELOW) - $5.39","SIZE 10-13 (NOT SHOE SIZE- SEE SIZES BELOW)", x++); ao(s, "SIZE 9-11 (NOT SHOE SIZE- SEE SIZES BELOW) - $5.19","SIZE 9-11 (NOT SHOE SIZE- SEE SIZES BELOW)", x++); break; case "ROYAL W/BLACK & WHITE VOLLEYBALLS": ao(s, "SIZE 10-13 (NOT SHOE SIZE- SEE SIZES BELOW) - $5.39","SIZE 10-13 (NOT SHOE SIZE- SEE SIZES BELOW)", x++); ao(s, "SIZE 9-11 (NOT SHOE SIZE- SEE SIZES BELOW) - $5.19","SIZE 9-11 (NOT SHOE SIZE- SEE SIZES BELOW)", x++); break; case "FLUORESCENT PINK W/BLACK & WHITE VOLLEYBALLS": ao(s, "SIZE 9-11 (NOT SHOE SIZE- SEE SIZES BELOW) - $5.19","SIZE 9-11 (NOT SHOE SIZE- SEE SIZES BELOW)", x++); break; case "FLUORESCENT ORANGE W/BLACK & WHITE VOLLEYBALLS": ao(s, "SIZE 9-11 (NOT SHOE SIZE- SEE SIZES BELOW) - $5.19","SIZE 9-11 (NOT SHOE SIZE- SEE SIZES BELOW)", x++); break; case "RED W/BLACK & WHITE VOLLEYBALLS": ao(s, "SIZE 10-13 (NOT SHOE SIZE- SEE SIZES BELOW) - $5.39","SIZE 10-13 (NOT SHOE SIZE- SEE SIZES BELOW)", x++); ao(s, "SIZE 9-11 (NOT SHOE SIZE- SEE SIZES BELOW) - $5.19","SIZE 9-11 (NOT SHOE SIZE- SEE SIZES BELOW)", x++); break; case "PINK W/BLACK & WHITE VOLLEYBALLS": ao(s, "SIZE 9-11 (NOT SHOE SIZE- SEE SIZES BELOW) - $5.19","SIZE 9-11 (NOT SHOE SIZE- SEE SIZES BELOW)", x++); break; case "FLUORESCENT GREEN W/BLACK & WHITE VOLLEYBALLS": ao(s, "SIZE 9-11 (NOT SHOE SIZE- SEE SIZES BELOW) - $5.19","SIZE 9-11 (NOT SHOE SIZE- SEE SIZES BELOW)", x++); break; case "BLACK W/BLACK & WHITE VOLLEYBALLS": ao(s, "SIZE 10-13 (NOT SHOE SIZE- SEE SIZES BELOW) - $5.39","SIZE 10-13 (NOT SHOE SIZE- SEE SIZES BELOW)", x++); ao(s, "SIZE 9-11 (NOT SHOE SIZE- SEE SIZES BELOW) - $5.19","SIZE 9-11 (NOT SHOE SIZE- SEE SIZES BELOW)", x++); break; } } function initSizes (){ var s, c, f=document.frmOrder; if ( !f ) return; s = f.sizes; c = f.colors; if (!c || !s) return; if (c.selectedIndex > 0){ setSizes(c, s); } else { s.options.length = 0; var opt = new Option('Please select a color first', ''); s.options[0] = opt; } } function clearSizes (){ var s, c, f=document.frmOrder; if ( !f ) return; s = f.sizes; c = f.colors; if (!c || !s) return; if (c.selectedIndex > 0) return; s.options.length = 0; var opt = new Option('Please select a color first', ''); s.options[0] = opt; } window.onload = initSizes;