function VolunteerWorkInPalerosForm()
{
    this.form = new Form(this.getIds());
}

VolunteerWorkInPalerosForm.prototype.submitForm = function()
{
    if (this.isAValidForm())
    {
        document.getElementById('source').value = 'Volunteer Work In Paleros';
        return true;
    }
    else
    {
        return false;
    }
}

VolunteerWorkInPalerosForm.prototype.isAValidForm = function()
{
    return this.form.isAValidForm();
}

VolunteerWorkInPalerosForm.prototype.getIds = function()
{
    return new Array('first_name', 'last_name', 'email', 'confirm_email');
}