var options = this.props.queries.map(function(query, i) {
      return <option key={i} value={query.value}>{query.name}</option>;
    });