What would be the simplest way for me to copy a CString to a LPTSTR?

LPSTR pszText; //"This is type of LPSTR";
CString cs = "This is a test";

I want both variables to contain "This is a test". Thanks for any suggestions.
JD