function removeSign(obj) {
	if (obj.value.indexOf('+') > -1 || obj.value.indexOf('-') > -1) obj.value = obj.value.substring(1);
}
