function changeFieldToActive(target) {

	if(target.className == 'passivefield') {
		target.value = '';
		target.className = 'activefield';
	}

}


