select-next - like select+skip, gets the value following the value following the key
select-next: func [
"Like select, but gets the value following the value following the key"
series [series!]
key [any-type!]
/local pos
][
if pos: find series key [
first skip pos 2
]
]