Index: src/com/openvehicles/OVMS/ui/settings/CarEditorFragment.java
===================================================================
--- src/com/openvehicles/OVMS/ui/settings/CarEditorFragment.java	(revision 101)
+++ src/com/openvehicles/OVMS/ui/settings/CarEditorFragment.java	(working copy)
@@ -132,6 +132,7 @@
 			mCarData.sel_vehicle_label = Ui.getValidValue(rootView, R.id.txt_vehicle_label, new StringValidator()); 
 			mCarData.sel_server_password = Ui.getValidValue(rootView, R.id.txt_server_passwd, new PasswdValidator(4, 16)); 
 			mCarData.sel_module_password = Ui.getValidValue(rootView, R.id.txt_module_passwd, new PasswdValidator(4, 16));
+			mCarData.sel_server = Ui.getValidValue(rootView, R.id.txt_server_address, new StringValidator());
 			mCarData.sel_vehicle_image = sAvailableColors[mGalleryCar.getSelectedItemPosition()];
 
 		} catch (ValidationException e) {
@@ -156,6 +157,7 @@
 		Ui.setValue(rootView, R.id.txt_vehicle_label, mCarData.sel_vehicle_label);
 		Ui.setValue(rootView, R.id.txt_server_passwd, mCarData.sel_server_password);
 		Ui.setValue(rootView, R.id.txt_module_passwd, mCarData.sel_module_password);
+		Ui.setValue(rootView, R.id.txt_server_address, mCarData.sel_server);
 
 		AppPrefes appPrefes = new AppPrefes(getActivity(), "ovms");
 		System.out.println("sel_vehicle_label" + mCarData.sel_vehicle_label);
Index: res/layout/fragment_careditor.xml
===================================================================
--- res/layout/fragment_careditor.xml	(revision 101)
+++ res/layout/fragment_careditor.xml	(working copy)
@@ -32,6 +32,16 @@
 	        android:layout_marginTop="8dp"
 	        android:hint="@string/lb_module_passwd"
 	        android:inputType="textPassword"/>
+
+	    <EditText
+	        android:id="@+id/txt_server_address"
+	        android:layout_width="match_parent"
+	        android:layout_height="wrap_content"
+	        android:layout_marginTop="8dp"
+	        android:ems="10"
+	        android:hint="@string/ServerNameOrIP"
+	        android:inputType="text"
+	        android:text="tmc.openvehicles.com" />
 	
 	    <TextView android:layout_width="wrap_content" android:layout_height="wrap_content"
 	        android:layout_marginTop="8dp"
Index: res/values/strings.xml
===================================================================
--- res/values/strings.xml	(revision 101)
+++ res/values/strings.xml	(working copy)
@@ -76,7 +76,7 @@
     <string name="lb_vehicle_label">Vehicle Label</string>
     <string name="lb_server_passwd">OVMS Server Password</string>
     <string name="lb_module_passwd">OVMS Module Password</string>
-    <string name="lb_slide_choice_vehicle">Slide for choice vehicle</string>
+    <string name="lb_slide_choice_vehicle">Slide for vehicle choice</string>
     <string name="lb_mmi_ussd_code">MMI/USSD Code</string>
     <string name="lb_cellular_usage">Cellular Usage</string>
     <string name="lb_reset_ovms_module">Reset OVMS Module</string>
