*/
private JPanel buildAddressPage() {
tpAddress = new JTextPane();
tpAddress.setPreferredSize(new Dimension(20, 80));
tpAddress.setMargin(new Insets(0, 0, 0, 0));
tfxCity = new JTextFieldExt(50);
tfxRegion = new JTextFieldExt(50);
tfxPostalCode = new JTextFieldExt(50);
cbCountry = new JComboBox(((CustomerController) controller).getCountriesList(true).toArray());
JPanel panel = new JPanel(new MigLayout("insets 20 10 10 10", "[][fill,grow]"));
panel.add(new JLabel(I18n.CUSTOMERS.getString("Customer.Form.Address")), "gap para");