tron00 got me to this point and it works but with a problem
I reopen this issue to show fix for others that may need simular answer. I found a problem. What I need is, depends on the selection of a drop down. If wichita is selected a email is sent to wichita(at).com If Hutchison is selected a email is sent to Hutchson(at).com. where the problem with this code comes in I display the value of the drop down on another page so if the value is an email it is getting displayed I need the value to be Wichita, Hutchson what ever one was selected.
Here is the answer that works so far any ways
Here is what the final answer as for now is seems to work place this after Date Posted: ".$DatePosted." ";
$Local = $_POST['Track'];
$checkArray = array(
'Wichita' => 'EMAIL ADDRESS',
'Hutchison' => 'EMAIL ADDRESS',
'A Main' => 'EMAIL ADDRESS',
'Pea Body' => 'EMAIL ADDRESS',
'Newton' => 'EMAIL ADDRESS',
'Action RC' => 'EMAIL ADDRESS',
'Enid' => 'EMAIL ADDRESS',
);
$to = $checkArray[$Local];