Change output based on text field value

What you can do is:

$string = get_field( 'your_field_name' );
if (strpos($string , 'France') !== false) {
   // do your thing
}

You can use the stripos for case-insensitive.