Use the VBA
Hi Amelia
One idea is to make a macro in the VBA editor then do something like this:
Private Sub drobDownName_AfterUpdate()
Dim checkString As String
checkString = "School"
If Me.drobDownName.Value = checkString Then
'this is where you make you checkbox visible
Me.checkBox.Visible...