document.observe('dom:loaded', setUpForm);

function setUpForm()
{
	
	Event.observe("willing_to_relocate_to","change",function(evt) {
		var sl=new LocationManager();
		sl.highlightCounties(Event.element(evt));
	});
	
	
	Element.observe('willing_to_relocate', 'change', function(evt) {
		$('relocate_to_holder').toggle();
	});
	
	if($('willing_to_relocate').value == '1') $('relocate_to_holder').show();
	
	Try.these(
	    function() { $('password').value = ''; }
  	);
  	
  	Try.these(
	    function() { $('password_bis').value = ''; }
  	);
	
	// $('password').value = '';
	// $('password_bis').value = '';
	
	$$('div.error').each(function(obj) {
		obj.down('label').setStyle({
		  color: 'red'
		})
	});
	
}


