write a script for the page that will randomly pick one of the locations to present to the user.
this could even be in javascript so that it can work client side and not require server side scripting.
eg.
If rand() > 0.5
{
write "Location1"
}
else
{
write "location2"
}
Obviously that is just pseudo-code, but the principle could be applied any script type.