like ahundiak said, you could put it into an associative array
$files = array("u_ben_who" => "../survey_templates/u_ben_who.php",
"u_ben_receiveatonce" => "../survey_templates/u_ben_receiveatonce.php");
or, to shorten, use a path var
$path = "../survey_templates/";
$files = array("u_ben_who" => "u_ben_who.php", "u_ben_receiveatonce" => "u_ben_receiveatonce.php");
$file = $path . $files[option];
or even shorter
$file = $path . $option . ".php";