$() gets you a jQuery object, so you can use it with jQuery methods etc. To access "selectedIndex" you need the actual element, so try:
$("#b6")[0].selectedIndex = $("#s6")[0].selectedIndex;
Chris
_______________________________________________ jQuery mailing list [email protected] http://jquery.com/discuss/
