Hey Chris,
Currently there is no setting to select default country in list and other option should not be shown . But you can do this by some of customization in template. You can select united state by default in coutry list and select box to only readonly mode by doing some customization in template.
For this go to root/components/com_payplans/themes/wireframe/checkout/default/company.php, near line no. 55, find below mentioned line of code
[gist type="php"]
<?php echo $this->html('floatlabel.country', 'COM_PP_CHECKOUT_COUNTRY', 'preference[business_country]', $country, '', array('data-pp-company-country' => '')); ?>
[/gist]
Replace with
[gist type="php"]
<?php echo $this->html('floatlabel.country', 'COM_PP_CHECKOUT_COUNTRY', 'preference[business_country]', 223, '', array('data-pp-company-country' => '', 'disabled' => '')); ?>
[/gist]
Let me know if you have any query.