first you can change the rowSource of cboPropertyselect with this shorter version
SELECT tblProperty.PropertyID, tblProperty.PropNameShort, tblProperty.ProjectStatusID
FROM tblProperty
WHERE tblProperty.ProjectStatusID In(4,9,10,11)
ORDER BY tblProperty.PropNameShort
in the afterUpdate event of cboPropertyselect place this codes
private sub cboPropertyselect_afterupdate()
Me.cboAuditYearSelect.rowsource="SELECT tblPropertiesAudits.PropertyAuditID, tblPropertiesAudits.PropertyID, tblPropertiesAudits.ValidDate FROM tblPropertiesAudits Where PropertyID=" & me.cboPropertySelect
end sub