var ff1 = new Array()
ff1[0] = new uziti( "Užití", 1 )
function uziti( strName, iFirstIndex ){
    this.strName = strName
    this.iFirstIndex = iFirstIndex
    this.Validate = function( field ) {
        if (field.selectedIndex<this.iFirstIndex) {
            alert('Vyberte prosím hodnotu v poli "' + this.strName + '"./nChoose a value utilization./nВыберите велечину Цель использования');
            field.focus()
            return false    
        }
        return true
    }
}

