Since there's no Else tag in DB you can do it like this:
Code:
<If condition="Me.IsInTown==False">
<!-- What do you wanna do.
</If>
<!-- Now comes the <Else> -->
<If condition="!Me.IsInTown==False"> <!-- OR Me.IsInTown==True -->
<!-- Easy else! -->
</If>