[jQuery] How to select neighbouring elements

[jQuery] How to select neighbouring elements


Hi,
I have this setup (pseudo code):
formA
table
td checkbox select select select
formB
table
td checkbox select select select
The "checkbox select select select" part is included so it is
identical in the 2 places (ie it is not possible to have different
id's)
What I want is that checking the checkbox only the selects next to the
checkbox get visible.
The only difference between the 2 checkbox/selects combinations is
that the first one is in form A and the 2nd one is in form B.
Is it possible to select only the selects in the same td as the
clicked checkbox to make them visible?
I tried JQuery's parent and sibling selectors but I am not sure if
they fit my need here.
Thanks,
Marc