Really this is all a list. I would like to make it not seem like a list.
private void GetCarType(string Text)
{
if (Text == "76705F76775F676F6C665F3833")
txtType.Text = "Golf GTI";
if (Text == "76705F6175645F72385F303800")
txtType.Text = "Audi R8";
if (Text == "76705F6368765F636F62616C74")
txtType.Text = "Cobalt SS";
if (Text == "76705F6475635F393939725F30")
txtType.Text = "999R";
if (Text == "76705F6D69745F65636C697073")
txtType.Text = "99 Eclipse";
if (Text == "76705F736C6E5F73375F303600")
txtType.Text = "Saleen S7";
if (Text == "76705F6368765F636F72766574")
txtType.Text = "Z06";
if (Text == "76705F6D7A645F7278375F3935")
txtType.Text = "RX7";
if (Text == "76705F6D7A645F7278385F3036")
txtType.Text = "RX8";
if (Text == "76705F6C616D5F6D7572636965")
txtType.Text = "Murcielago";
if (Text == "76705F6175645F7273345F3037")
txtType.Text = "RS4";
if (Text == "76705F76775F676F6C665F3037")
txtType.Text = "R32";
if (Text == "76705F76775F736369726F6363")
txtType.Text = "Scirocco";
if (Text == "76705F6368765F63616D61726F")
txtType.Text = "Camaro Concept";
if (Text == "76705F6467655F6368616C6C65")
txtType.Text = "Challenger Concept";
if (Text == "76705F6672645F67745F303600")
txtType.Text = "Ford GT";
if (Text == "76705F6E736E5F3335307A5F30")
txtType.Text = "350 Z";
if (Text == "76705F736C6E5F733238315F30")
txtType.Text = "S302";
if (Text == "76705F706F6E5F7472616E7361")
txtType.Text = "Firebird";
if (Text == "7670645F6C725F73706F72745F")
txtType.Text = "Range Rover";
if (Text == "76705F6D69745F333030306774")
txtType.Text = "3000GT";
if (Text == "76705F6D627A5F733630305F30")
txtType.Text = "S600 " + "DUB";
if (Text == "7670645F6368765F6368657665")
txtType.Text = "Chevelle SS";
if (Text == "76705F6672645F6D757374616E")
txtType.Text = "Mustang GT";
if (Text == "7670645F706F6E5F67746F5F36")
txtType.Text = "66 GTO";
if (Text == "76705F6467655F636861726765")
txtType.Text = "Charger SRT-8";
if (Text == "76705F6368765F696D70616C61")
txtType.Text = "Impala SS";
//if (Text == "")
// txtType.Text = "";
if (Text == "76705F6372795F333030635F30")
txtType.Text = "300C SRT-8";
if (Text == "76705F6672645F636F6272615F")
txtType.Text = "Cobra Concept";
if (Text == "7670645F6475635F313039385F")
txtType.Text = "1098R";
if (Text == "7670645F616D5F6462395F3038")
txtType.Text = "DB9";
if (Text == "7670645F6D69745F65766F785F")
txtType.Text = "Evolution X";
if (Text == "76705F6D69745F65766F5F3036")
txtType.Text = "Lancer";
if (txtType.Text == String.Empty)
txtType.Text = Text;
if (Text == "76705F6C616D5F67616C6C6172")
txtType.Text = "Gallardo";
if (Text == "76705F6475635F6D6F6E737465")
txtType.Text = "Monster S4RS";
if (Text == "76705F6E736E5F736B796C696E")
txtType.Text = "Skyline";
}