// for field.tag
function KolamonField(id){

    this.id = id;

    this.setError = function(errorMessage){
        $('fieldErrorMessage_' + this.id).innerHTML = errorMessage;
    }

}
