If your cursor is at the start of the known title, you can run this macro:
Code:
Sub ScratchMacro()
'A basic Word Macro coded by Gregory K. Maxey
Dim oRng As Range
Set oRng = Selection.Range
oRng.EndOf Unit:=wdSection, Extend:=wdExtend
oRng.Select
lbl_Exit:
Exit Sub
End Sub