Just a suggestion, but you might want to modify how the package names are read from the account panel (not cPanel, but the one at x10hosting.com/account). Right now it can't read the package names correctly if the enhancements are added (both for the ad codes and for if you want to modify your account information). I don't know what language is used for that panel, but below could be a workaround if you use PHP (this only fixes the display aspect, not sure how everything works in the backend).
PHP:
<?php
//This part gets the main package name without the enhancements added
$package = /* do code to get the package name here */;
if( strpos( $package, 'Static' ) === 0 ) {
$basepkg = 'Static';
} elseif( strpos( $package, 'Advanced' ) === 0 ) {
$basepkg = 'Advanced';
} elseif( strpos( $package, 'Corporate' ) === 0 ) {
$basepkg = 'Corporate';
} else {
$basepkg = $package;
}
//This part gets the enhancements
preg_match("/$basepkg(.*)/", $package, $matches);
$enhancements = $matches[1];
//Then, use $basepkg for determining which ad code to use
//For the display in the "Hosting Package" drop-down in the
//modify your account details section, use something like so:
//'<option value="Static'.$enhancements.'">Static'.$enhancements.'</option>'
//'<option value="Advanced'.$enhancements.'">Advanced'.$enhancements.'</option>'
//'<option value="Corporate'.$enhancements.'">Corporate'.$enhancements.'</option>'
Of course, there will need to be validation after something is posted to make sure people didn't edit the HTML of the options to try to give themselves a better package deal.