I'm assuming that, in your AJAX function you are sending the "searchthese" var through the GET request, right?
If so, do you have code like the following in your PHP file?
Code:
if(isset($_GET['searchthese'])) {
$searchTheseArr = explode('+',$_GET['searchthese']);
}