Read information from selext box / combo box?

Hello - i would like to read the information from the select box / combo box in the attached word-document -
(its selected "Lisa" under JOB DETAILS at the top in the attached file)

When i try to read this information with a loop trough the table for all paragraphs with eg. this code

t = doc.tables
  for idxT,table in enumerate(doc.tables):
      for idxR, row in enumerate(table.rows):
          for idxC, cell in enumerate(row.cells):
              for idxP, para in enumerate(cell.paragraphs):    

I didn“t catch this information.
Is there any way to get this information?

inp.docx