﻿
function Select(iId, iForm)
{
    var This = this;

    // Implements
    Implements(This, FormInput, iId, iForm);
    
    // Events
    This.OnChange = new EventHandler();

    // Initialize
    {
        This.GetElement().onchange = this.OnChange.Invoke;
    }
}
