// Nikken: Checkout Step 1 - City Limits


function form_check(){
	alert('Please fill in the required field(s):\n\nShipCity');
	
	/****** validation code loops through all required fields (plus email), 
	highlight_field() needs to be included in this loop in order to highlight 
	the necessary field tag *****/
	
	highlight_field('ShipCity');
	
	/****** ******/	
	
	$('form_message').set('html', 'Incorrect: Please complete all required items.');
	return false;
}

function highlight_field(field){
	$(field).setStyle('color', '#900');
}